m
This commit is contained in:
@@ -0,0 +1,96 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml.Schema
|
||||
{
|
||||
/// <summary>Supports a simple iteration over a collection. This class cannot be inherited. </summary>
|
||||
// Token: 0x02000219 RID: 537
|
||||
[Token(Token = "0x2000219")]
|
||||
public sealed class XmlSchemaCollectionEnumerator : IEnumerator
|
||||
{
|
||||
// Token: 0x0600155F RID: 5471 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x600155F")]
|
||||
[Address(RVA = "0x829E40", Offset = "0x828E40", VA = "0x180829E40")]
|
||||
internal XmlSchemaCollectionEnumerator(Hashtable collection)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.System#Collections#IEnumerator#Reset" />.</summary>
|
||||
// Token: 0x06001560 RID: 5472 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6001560")]
|
||||
[Address(RVA = "0x829DE0", Offset = "0x828DE0", VA = "0x180829DE0", Slot = "6")]
|
||||
void IEnumerator.Reset()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>For a description of this member, see <see cref="M:System.Xml.Schema.XmlSchemaCollectionEnumerator.MoveNext" />.</summary>
|
||||
/// <returns>Returns the next node.</returns>
|
||||
// Token: 0x06001561 RID: 5473 RVA: 0x000096F0 File Offset: 0x000078F0
|
||||
[Token(Token = "0x6001561")]
|
||||
[Address(RVA = "0x829D90", Offset = "0x828D90", VA = "0x180829D90", Slot = "4")]
|
||||
bool IEnumerator.MoveNext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Advances the enumerator to the next schema in the collection.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the move was successful; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
||||
// Token: 0x06001562 RID: 5474 RVA: 0x00009708 File Offset: 0x00007908
|
||||
[Token(Token = "0x6001562")]
|
||||
[Address(RVA = "0x829D40", Offset = "0x828D40", VA = "0x180829D40")]
|
||||
public bool MoveNext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>For a description of this member, see <see cref="P:System.Xml.Schema.XmlSchemaCollectionEnumerator.Current" />.</summary>
|
||||
/// <returns>Returns the current node.</returns>
|
||||
// Token: 0x170005DF RID: 1503
|
||||
// (get) Token: 0x06001563 RID: 5475 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005DF")]
|
||||
object IEnumerator.Current
|
||||
{
|
||||
[Token(Token = "0x6001563")]
|
||||
[Address(RVA = "0x829E30", Offset = "0x828E30", VA = "0x180829E30", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the current <see cref="T:System.Xml.Schema.XmlSchema" /> in the collection.</summary>
|
||||
/// <returns>The current <see langword="XmlSchema" /> in the collection.</returns>
|
||||
// Token: 0x170005E0 RID: 1504
|
||||
// (get) Token: 0x06001564 RID: 5476 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005E0")]
|
||||
public XmlSchema Current
|
||||
{
|
||||
[Token(Token = "0x6001564")]
|
||||
[Address(RVA = "0x829F00", Offset = "0x828F00", VA = "0x180829F00")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170005E1 RID: 1505
|
||||
// (get) Token: 0x06001565 RID: 5477 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x170005E1")]
|
||||
internal XmlSchemaCollectionNode CurrentNode
|
||||
{
|
||||
[Token(Token = "0x6001565")]
|
||||
[Address(RVA = "0x829E90", Offset = "0x828E90", VA = "0x180829E90")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000BC1 RID: 3009
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x4000BC1")]
|
||||
private IDictionaryEnumerator enumerator;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user