Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

57 lines
1.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// <summary>Represents an XML comment.</summary>
// Token: 0x02000016 RID: 22
[Token(Token = "0x2000016")]
public class XComment : XNode
{
/// <summary>Gets the node type for this node.</summary>
/// <returns>The node type. For <see cref="T:System.Xml.Linq.XComment" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Comment" />.</returns>
// Token: 0x1700001A RID: 26
// (get) Token: 0x06000072 RID: 114 RVA: 0x00002280 File Offset: 0x00000480
[Token(Token = "0x1700001A")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000072")]
[Address(RVA = "0x681E00", Offset = "0x680E00", VA = "0x180681E00", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// <summary>Gets or sets the string value of this comment.</summary>
/// <returns>A <see cref="T:System.String" /> that contains the string value of this comment.</returns>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="value" /> is <see langword="null" />.</exception>
// Token: 0x1700001B RID: 27
// (get) Token: 0x06000073 RID: 115 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x1700001B")]
public string Value
{
[Token(Token = "0x6000073")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
get
{
return null;
}
}
/// <summary>Write this comment to an <see cref="T:System.Xml.XmlWriter" />.</summary>
/// <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
// Token: 0x06000074 RID: 116 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000074")]
[Address(RVA = "0x11CA9A0", Offset = "0x11C99A0", VA = "0x1811CA9A0", Slot = "7")]
public override void WriteTo(XmlWriter writer)
{
}
// Token: 0x04000037 RID: 55
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000037")]
internal string value;
}
}