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

68 lines
2.4 KiB
C#

using System;
using System.Collections;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Represents a collection of <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> objects.</summary>
// Token: 0x0200011D RID: 285
[Token(Token = "0x200011D")]
public class XmlAnyElementAttributes : CollectionBase
{
/// <summary>Gets or sets the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> at the specified index.</summary>
/// <param name="index">The index of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" />. </param>
/// <returns>An <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> at the specified index.</returns>
// Token: 0x1700035C RID: 860
[Token(Token = "0x1700035C")]
public XmlAnyElementAttribute this[int index]
{
[Token(Token = "0x6000CD0")]
[Address(RVA = "0x8919A0", Offset = "0x8909A0", VA = "0x1808919A0")]
get
{
return null;
}
}
/// <summary>Adds an <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> to the collection.</summary>
/// <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" /> to add. </param>
/// <returns>The index of the newly added <see cref="T:System.Xml.Serialization.XmlAnyElementAttribute" />.</returns>
// Token: 0x06000CD1 RID: 3281 RVA: 0x00006B70 File Offset: 0x00004D70
[Token(Token = "0x6000CD1")]
[Address(RVA = "0x891930", Offset = "0x890930", VA = "0x180891930")]
public int Add(XmlAnyElementAttribute attribute)
{
return 0;
}
// Token: 0x06000CD2 RID: 3282 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CD2")]
[Address(RVA = "0x891760", Offset = "0x890760", VA = "0x180891760")]
internal void AddKeyHash(StringBuilder sb)
{
}
// Token: 0x1700035D RID: 861
// (get) Token: 0x06000CD3 RID: 3283 RVA: 0x00006B88 File Offset: 0x00004D88
[Token(Token = "0x1700035D")]
internal int Order
{
[Token(Token = "0x6000CD3")]
[Address(RVA = "0x891A50", Offset = "0x890A50", VA = "0x180891A50")]
get
{
return 0;
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlAnyElementAttributes" /> class. </summary>
// Token: 0x06000CD4 RID: 3284 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CD4")]
[Address(RVA = "0x839930", Offset = "0x838930", VA = "0x180839930")]
public XmlAnyElementAttributes()
{
}
}
}