This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,150 @@
using System;
using System.Collections;
using Cpp2IlInjected;
namespace System.Xml.Schema
{
/// <summary>A collection of <see cref="T:System.Xml.Schema.XmlSchemaObject" />s.</summary>
// Token: 0x02000246 RID: 582
[Token(Token = "0x2000246")]
public class XmlSchemaObjectCollection : CollectionBase
{
/// <summary>Initializes a new instance of the <see langword="XmlSchemaObjectCollection" /> class.</summary>
// Token: 0x060016A5 RID: 5797 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016A5")]
[Address(RVA = "0x839930", Offset = "0x838930", VA = "0x180839930")]
public XmlSchemaObjectCollection()
{
}
/// <summary>Gets the <see cref="T:System.Xml.Schema.XmlSchemaObject" /> at the specified index.</summary>
/// <param name="index">The index of the <see cref="T:System.Xml.Schema.XmlSchemaObject" />. </param>
/// <returns>The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> at the specified index.</returns>
// Token: 0x17000662 RID: 1634
[Token(Token = "0x17000662")]
public virtual XmlSchemaObject this[int index]
{
[Token(Token = "0x60016A6")]
[Address(RVA = "0x839940", Offset = "0x838940", VA = "0x180839940", Slot = "29")]
get
{
return null;
}
[Token(Token = "0x60016A7")]
[Address(RVA = "0x839A60", Offset = "0x838A60", VA = "0x180839A60", Slot = "30")]
set
{
}
}
/// <summary>Returns an enumerator for iterating through the <see langword="XmlSchemaObjects" /> contained in the <see langword="XmlSchemaObjectCollection" />.</summary>
/// <returns>The iterator returns <see cref="T:System.Xml.Schema.XmlSchemaObjectEnumerator" />.</returns>
// Token: 0x060016A8 RID: 5800 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016A8")]
[Address(RVA = "0x8396B0", Offset = "0x8386B0", VA = "0x1808396B0")]
public new XmlSchemaObjectEnumerator GetEnumerator()
{
return null;
}
/// <summary>Adds an <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to the <see langword="XmlSchemaObjectCollection" />.</summary>
/// <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" />. </param>
/// <returns>The index at which the item has been added.</returns>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.-or-
/// <paramref name="index" /> is greater than <see langword="Count" />. </exception>
/// <exception cref="T:System.InvalidCastException">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> parameter specified is not of type <see cref="T:System.Xml.Schema.XmlSchemaExternal" /> or its derived types <see cref="T:System.Xml.Schema.XmlSchemaImport" />, <see cref="T:System.Xml.Schema.XmlSchemaInclude" />, and <see cref="T:System.Xml.Schema.XmlSchemaRedefine" />.</exception>
// Token: 0x060016A9 RID: 5801 RVA: 0x00009AF8 File Offset: 0x00007CF8
[Token(Token = "0x60016A9")]
[Address(RVA = "0x839560", Offset = "0x838560", VA = "0x180839560")]
public int Add(XmlSchemaObject item)
{
return 0;
}
/// <summary>Inserts an <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to the <see langword="XmlSchemaObjectCollection" />.</summary>
/// <param name="index">The zero-based index at which an item should be inserted. </param>
/// <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to insert. </param>
/// <exception cref="T:System.ArgumentOutOfRangeException">
/// <paramref name="index" /> is less than zero.-or-
/// <paramref name="index" /> is greater than <see langword="Count" />. </exception>
// Token: 0x060016AA RID: 5802 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AA")]
[Address(RVA = "0x839730", Offset = "0x838730", VA = "0x180839730")]
public void Insert(int index, XmlSchemaObject item)
{
}
/// <summary>Removes an <see cref="T:System.Xml.Schema.XmlSchemaObject" /> from the <see langword="XmlSchemaObjectCollection" />.</summary>
/// <param name="item">The <see cref="T:System.Xml.Schema.XmlSchemaObject" /> to remove. </param>
// Token: 0x060016AB RID: 5803 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AB")]
[Address(RVA = "0x839870", Offset = "0x838870", VA = "0x180839870")]
public void Remove(XmlSchemaObject item)
{
}
/// <summary>
/// <see langword="OnInsert" /> is invoked before the standard <see langword="Insert" /> behavior. For more information, see <see langword="OnInsert" /> method <see cref="T:System.Collections.CollectionBase" />.</summary>
/// <param name="index">The index of <see cref="T:System.Xml.Schema.XmlSchemaObject" />. </param>
/// <param name="item">The item. </param>
// Token: 0x060016AC RID: 5804 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AC")]
[Address(RVA = "0x8397D0", Offset = "0x8387D0", VA = "0x1808397D0", Slot = "21")]
protected override void OnInsert(int index, object item)
{
}
/// <summary>
/// <see langword="OnSet" /> is invoked before the standard <see langword="Set" /> behavior. For more information, see the OnSet method for <see cref="T:System.Collections.CollectionBase" />.</summary>
/// <param name="index">The index of <see cref="T:System.Xml.Schema.XmlSchemaObject" />. </param>
/// <param name="oldValue">The old value. </param>
/// <param name="newValue">The new value. </param>
// Token: 0x060016AD RID: 5805 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AD")]
[Address(RVA = "0x839810", Offset = "0x838810", VA = "0x180839810", Slot = "20")]
protected override void OnSet(int index, object oldValue, object newValue)
{
}
/// <summary>
/// <see langword="OnClear" /> is invoked before the standard <see langword="Clear" /> behavior. For more information, see OnClear method for <see cref="T:System.Collections.CollectionBase" />.</summary>
// Token: 0x060016AE RID: 5806 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AE")]
[Address(RVA = "0x8397B0", Offset = "0x8387B0", VA = "0x1808397B0", Slot = "22")]
protected override void OnClear()
{
}
/// <summary>
/// <see langword="OnRemove" /> is invoked before the standard <see langword="Remove" /> behavior. For more information, see the <see langword="OnRemove" /> method for <see cref="T:System.Collections.CollectionBase" />.</summary>
/// <param name="index">The index of <see cref="T:System.Xml.Schema.XmlSchemaObject" />. </param>
/// <param name="item">The item. </param>
// Token: 0x060016AF RID: 5807 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016AF")]
[Address(RVA = "0x8397F0", Offset = "0x8387F0", VA = "0x1808397F0", Slot = "23")]
protected override void OnRemove(int index, object item)
{
}
// Token: 0x060016B0 RID: 5808 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016B0")]
[Address(RVA = "0x839620", Offset = "0x838620", VA = "0x180839620")]
internal XmlSchemaObjectCollection Clone()
{
return null;
}
// Token: 0x060016B1 RID: 5809 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60016B1")]
[Address(RVA = "0x839520", Offset = "0x838520", VA = "0x180839520")]
private void Add(XmlSchemaObjectCollection collToAdd)
{
}
// Token: 0x04000C4F RID: 3151
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4000C4F")]
private XmlSchemaObject parent;
}
}