86 lines
4.3 KiB
C#
86 lines
4.3 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Reflection;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>A collection of <see cref="T:System.Xml.Schema.XmlSchemaObject" />s.</summary>
|
|
// Token: 0x0200011A RID: 282
|
|
[Token(Token = "0x200011A")]
|
|
[DefaultMember("Item")]
|
|
public class XmlSchemaObjectCollection : CollectionBase
|
|
{
|
|
/// <summary>Initializes a new instance of the <see langword="XmlSchemaObjectCollection" /> class.</summary>
|
|
// Token: 0x06000886 RID: 2182 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000886")]
|
|
[Address(RVA = "0x5174E0", Offset = "0x5162E0", VA = "0x1805174E0")]
|
|
public XmlSchemaObjectCollection()
|
|
{
|
|
}
|
|
|
|
/// <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: 0x06000887 RID: 2183 RVA: 0x00005628 File Offset: 0x00003828
|
|
[Token(Token = "0x6000887")]
|
|
[Address(RVA = "0x5D0CF0", Offset = "0x5CFAF0", VA = "0x1805D0CF0")]
|
|
public int Add(XmlSchemaObject item)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <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: 0x06000888 RID: 2184 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000888")]
|
|
[Address(RVA = "0x5D0DD0", Offset = "0x5CFBD0", VA = "0x1805D0DD0", 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: 0x06000889 RID: 2185 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000889")]
|
|
[Address(RVA = "0x5D0E10", Offset = "0x5CFC10", VA = "0x1805D0E10", 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: 0x0600088A RID: 2186 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600088A")]
|
|
[Address(RVA = "0x5D0DB0", Offset = "0x5CFBB0", VA = "0x1805D0DB0", 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: 0x0600088B RID: 2187 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600088B")]
|
|
[Address(RVA = "0x5D0DF0", Offset = "0x5CFBF0", VA = "0x1805D0DF0", Slot = "23")]
|
|
protected override void OnRemove(int index, object item)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000436 RID: 1078
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000436")]
|
|
private XmlSchemaObject parent;
|
|
}
|
|
}
|