Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/Serialization/XmlAnyElementAttribute.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

90 lines
3.1 KiB
C#

using System;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Specifies that the member (a field that returns an array of <see cref="T:System.Xml.XmlElement" /> or <see cref="T:System.Xml.XmlNode" /> objects) contains objects that represent any XML element that has no corresponding member in the object being serialized or deserialized.</summary>
// Token: 0x0200011C RID: 284
[Token(Token = "0x200011C")]
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class XmlAnyElementAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> class.</summary>
// Token: 0x06000CCB RID: 3275 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CCB")]
[Address(RVA = "0x891700", Offset = "0x890700", VA = "0x180891700")]
public XmlAnyElementAttribute()
{
}
/// <summary>Gets or sets the XML element name.</summary>
/// <returns>The name of the XML element.</returns>
/// <exception cref="T:System.InvalidOperationException">The element name of an array member does not match the element name specified by the <see cref="P:System.Xml.Serialization.XmlAnyElementAttribute.Name" /> property. </exception>
// 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;
}
}
/// <summary>Gets or sets the XML namespace generated in the XML document.</summary>
/// <returns>An XML namespace.</returns>
// 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;
}
}
/// <summary>Gets or sets the explicit order in which the elements are serialized or deserialized.</summary>
/// <returns>The order of the code generation.</returns>
// 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;
}
}