Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

27 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Controls how the <see cref="T:System.Xml.Serialization.XmlSerializer" /> serializes an enumeration member.</summary>
// Token: 0x0200008E RID: 142
[Token(Token = "0x200008E")]
[AttributeUsage(AttributeTargets.Field)]
public class XmlEnumAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlEnumAttribute" /> class, and specifies the XML value that the <see cref="T:System.Xml.Serialization.XmlSerializer" /> generates or recognizes (when it serializes or deserializes the enumeration, respectively).</summary>
/// <param name="name">The overriding name of the enumeration member. </param>
// Token: 0x0600058C RID: 1420 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600058C")]
[Address(RVA = "0x462000", Offset = "0x460E00", VA = "0x180462000")]
public XmlEnumAttribute(string name)
{
}
// Token: 0x040002AB RID: 683
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40002AB")]
private string name;
}
}