Files
27Aug2021-Cpp2IL-Dump/System.Xml.Linq/XContainer.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

66 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// <summary>Represents a node that can contain other nodes.</summary>
// Token: 0x0200000D RID: 13
[Token(Token = "0x200000D")]
public abstract class XContainer : XNode
{
/// <summary>Gets the last child node of this node.</summary>
/// <returns>An <see cref="T:System.Xml.Linq.XNode" /> containing the last child node of the <see cref="T:System.Xml.Linq.XContainer" />.</returns>
// Token: 0x1700000E RID: 14
// (get) Token: 0x06000042 RID: 66 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x1700000E")]
public XNode LastNode
{
[Token(Token = "0x6000042")]
[Address(RVA = "0x11CB120", Offset = "0x11CA120", VA = "0x1811CB120")]
get
{
return null;
}
}
/// <summary>Returns a collection of the child nodes of this element or document, in document order.</summary>
/// <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of <see cref="T:System.Xml.Linq.XNode" /> containing the contents of this <see cref="T:System.Xml.Linq.XContainer" />, in document order.</returns>
// Token: 0x06000043 RID: 67 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000043")]
[Address(RVA = "0x11CAF00", Offset = "0x11C9F00", VA = "0x1811CAF00")]
public IEnumerable<XNode> Nodes()
{
return null;
}
// Token: 0x06000044 RID: 68 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000044")]
[Address(RVA = "0x11CAA30", Offset = "0x11C9A30", VA = "0x1811CAA30")]
internal static string GetDateTimeString(DateTime value)
{
return null;
}
// Token: 0x06000045 RID: 69 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000045")]
[Address(RVA = "0x11CAA90", Offset = "0x11C9A90", VA = "0x1811CAA90")]
internal static string GetStringValue(object value)
{
return null;
}
// Token: 0x06000046 RID: 70 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000046")]
[Address(RVA = "0x11CAF70", Offset = "0x11C9F70", VA = "0x1811CAF70")]
internal void WriteContentTo(XmlWriter writer)
{
}
// Token: 0x0400001A RID: 26
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400001A")]
internal object content;
}
}