33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Defines a key/value metadata pair for the decorated assembly.</summary>
|
|
// Token: 0x02000218 RID: 536
|
|
[Token(Token = "0x2000218")]
|
|
[AttributeUsage(AttributeTargets.Assembly)]
|
|
public sealed class AssemblyMetadataAttribute : Attribute
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyMetadataAttribute" /> class by using the specified metadata key and value.</summary>
|
|
/// <param name="key">The metadata key.</param>
|
|
/// <param name="value">The metadata value.</param>
|
|
// Token: 0x06001402 RID: 5122 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001402")]
|
|
[Address(RVA = "0x4714F0", Offset = "0x4704F0", VA = "0x1804714F0")]
|
|
public AssemblyMetadataAttribute(string key, string value)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000A1E RID: 2590
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000A1E")]
|
|
private string m_key;
|
|
|
|
// Token: 0x04000A1F RID: 2591
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000A1F")]
|
|
private string m_value;
|
|
}
|
|
}
|