m
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Runtime.Serialization
|
||||
{
|
||||
/// <summary>Specifies that the field is an enumeration member and should be serialized.</summary>
|
||||
// Token: 0x02000004 RID: 4
|
||||
[Token(Token = "0x2000004")]
|
||||
[AttributeUsage(AttributeTargets.Field)]
|
||||
public sealed class EnumMemberAttribute : Attribute
|
||||
{
|
||||
/// <summary>Gets or sets the value associated with the enumeration member the attribute is applied to.</summary>
|
||||
/// <returns>The value associated with the enumeration member.</returns>
|
||||
// Token: 0x17000006 RID: 6
|
||||
// (get) Token: 0x06000006 RID: 6 RVA: 0x00002066 File Offset: 0x00000266
|
||||
[Token(Token = "0x17000006")]
|
||||
public string Value
|
||||
{
|
||||
[Token(Token = "0x6000006")]
|
||||
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000006 RID: 6
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000006")]
|
||||
private string value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user