Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

58 lines
1.9 KiB
C#

using System;
using System.Collections;
using System.Reflection;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents an ordered collection of nodes.</summary>
// Token: 0x0200004F RID: 79
[Token(Token = "0x200004F")]
[DefaultMember("ItemOf")]
public abstract class XmlNodeList : IEnumerable, IDisposable
{
/// <summary>Gets the number of nodes in the <see langword="XmlNodeList" />.</summary>
/// <returns>The number of nodes in the <see langword="XmlNodeList" />.</returns>
// Token: 0x17000178 RID: 376
// (get) Token: 0x060003AD RID: 941
[Token(Token = "0x17000178")]
public abstract int Count
{
[Token(Token = "0x60003AD")]
[Address(Slot = "6")]
get;
}
/// <summary>Gets an enumerator that iterates through the collection of nodes.</summary>
/// <returns>An enumerator used to iterate through the collection of nodes.</returns>
// Token: 0x060003AE RID: 942
[Token(Token = "0x60003AE")]
[Address(Slot = "7")]
public abstract IEnumerator GetEnumerator();
/// <summary>Releases all resources used by the <see cref="T:System.Xml.XmlNodeList" /> class.</summary>
// Token: 0x060003AF RID: 943 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003AF")]
[Address(RVA = "0x5C2230", Offset = "0x5C1030", VA = "0x1805C2230", Slot = "5")]
void IDisposable.Dispose()
{
}
/// <summary>Disposes resources in the node list privately.</summary>
// Token: 0x060003B0 RID: 944 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003B0")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "8")]
protected virtual void PrivateDisposeNodeList()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlNodeList" /> class.</summary>
// Token: 0x060003B1 RID: 945 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003B1")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
protected XmlNodeList()
{
}
}
}