using System;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// Specifies that the member (a field that returns an array of or objects) contains objects that represent any XML element that has no corresponding member in the object being serialized or deserialized.
// Token: 0x0200011C RID: 284
[Token(Token = "0x200011C")]
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class XmlAnyElementAttribute : Attribute
{
/// Initializes a new instance of the class.
// Token: 0x06000CCB RID: 3275 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CCB")]
[Address(RVA = "0x891700", Offset = "0x890700", VA = "0x180891700")]
public XmlAnyElementAttribute()
{
}
/// Gets or sets the XML element name.
/// The name of the XML element.
/// The element name of an array member does not match the element name specified by the property.
// Token: 0x17000359 RID: 857
// (get) Token: 0x06000CCC RID: 3276 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000359")]
public string Name
{
[Token(Token = "0x6000CCC")]
[Address(RVA = "0x891710", Offset = "0x890710", VA = "0x180891710")]
get
{
return null;
}
}
/// Gets or sets the XML namespace generated in the XML document.
/// An XML namespace.
// Token: 0x1700035A RID: 858
// (get) Token: 0x06000CCD RID: 3277 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700035A")]
public string Namespace
{
[Token(Token = "0x6000CCD")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
get
{
return null;
}
}
/// Gets or sets the explicit order in which the elements are serialized or deserialized.
/// The order of the code generation.
// Token: 0x1700035B RID: 859
// (get) Token: 0x06000CCE RID: 3278 RVA: 0x00006B58 File Offset: 0x00004D58
[Token(Token = "0x1700035B")]
public int Order
{
[Token(Token = "0x6000CCE")]
[Address(RVA = "0x470B70", Offset = "0x46FB70", VA = "0x180470B70")]
get
{
return 0;
}
}
// Token: 0x06000CCF RID: 3279 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CCF")]
[Address(RVA = "0x891660", Offset = "0x890660", VA = "0x180891660")]
internal void AddKeyHash(StringBuilder sb)
{
}
// Token: 0x040006B8 RID: 1720
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006B8")]
private string elementName;
// Token: 0x040006B9 RID: 1721
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40006B9")]
private string ns;
// Token: 0x040006BA RID: 1722
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40006BA")]
private int order;
}
}