71 lines
2.7 KiB
C#
71 lines
2.7 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.XmlElementAttribute" /> objects used by the <see cref="T:System.Xml.Serialization.XmlSerializer" /> to override the default way it serializes a class.</summary>
|
|
// Token: 0x02000127 RID: 295
|
|
[Token(Token = "0x2000127")]
|
|
public class XmlElementAttributes : CollectionBase
|
|
{
|
|
/// <summary>Gets or sets the element at the specified index.</summary>
|
|
/// <param name="index">The zero-based index of the element to get or set. </param>
|
|
/// <returns>The element at the specified index.</returns>
|
|
/// <exception cref="T:System.ArgumentOutOfRangeException">
|
|
/// <paramref name="index" /> is not a valid index in the <see cref="T:System.Xml.Serialization.XmlElementAttributes" />. </exception>
|
|
/// <exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Xml.Serialization.XmlElementAttributes" /> is read-only. </exception>
|
|
// Token: 0x17000389 RID: 905
|
|
[Token(Token = "0x17000389")]
|
|
public XmlElementAttribute this[int index]
|
|
{
|
|
[Token(Token = "0x6000D18")]
|
|
[Address(RVA = "0x8962C0", Offset = "0x8952C0", VA = "0x1808962C0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Adds an <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> to the collection.</summary>
|
|
/// <param name="attribute">The <see cref="T:System.Xml.Serialization.XmlElementAttribute" /> to add. </param>
|
|
/// <returns>The zero-based index of the newly added item.</returns>
|
|
// Token: 0x06000D19 RID: 3353 RVA: 0x00006D20 File Offset: 0x00004F20
|
|
[Token(Token = "0x6000D19")]
|
|
[Address(RVA = "0x896250", Offset = "0x895250", VA = "0x180896250")]
|
|
public int Add(XmlElementAttribute attribute)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// Token: 0x06000D1A RID: 3354 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000D1A")]
|
|
[Address(RVA = "0x895F50", Offset = "0x894F50", VA = "0x180895F50")]
|
|
internal void AddKeyHash(StringBuilder sb)
|
|
{
|
|
}
|
|
|
|
// Token: 0x1700038A RID: 906
|
|
// (get) Token: 0x06000D1B RID: 3355 RVA: 0x00006D38 File Offset: 0x00004F38
|
|
[Token(Token = "0x1700038A")]
|
|
internal int Order
|
|
{
|
|
[Token(Token = "0x6000D1B")]
|
|
[Address(RVA = "0x896370", Offset = "0x895370", VA = "0x180896370")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Serialization.XmlElementAttributes" /> class. </summary>
|
|
// Token: 0x06000D1C RID: 3356 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000D1C")]
|
|
[Address(RVA = "0x839930", Offset = "0x838930", VA = "0x180839930")]
|
|
public XmlElementAttributes()
|
|
{
|
|
}
|
|
}
|
|
}
|