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

123 lines
4.5 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents a notation declaration, such as &lt;!NOTATION... &gt;.</summary>
// Token: 0x02000050 RID: 80
[Token(Token = "0x2000050")]
public class XmlNotation : XmlNode
{
// Token: 0x060003B2 RID: 946 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003B2")]
[Address(RVA = "0x5DF850", Offset = "0x5DE650", VA = "0x1805DF850")]
internal XmlNotation(string name, string publicId, string systemId, XmlDocument doc)
{
}
/// <summary>Gets the name of the current node.</summary>
/// <returns>The name of the notation.</returns>
// Token: 0x17000179 RID: 377
// (get) Token: 0x060003B3 RID: 947 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000179")]
public override string Name
{
[Token(Token = "0x60003B3")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets the name of the current node without the namespace prefix.</summary>
/// <returns>For <see langword="XmlNotation" /> nodes, this property returns the name of the notation.</returns>
// Token: 0x1700017A RID: 378
// (get) Token: 0x060003B4 RID: 948 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700017A")]
public override string LocalName
{
[Token(Token = "0x60003B4")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0", Slot = "31")]
get
{
return null;
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>The node type. For <see langword="XmlNotation" /> nodes, the value is XmlNodeType.Notation.</returns>
// Token: 0x1700017B RID: 379
// (get) Token: 0x060003B5 RID: 949 RVA: 0x00003540 File Offset: 0x00001740
[Token(Token = "0x1700017B")]
public override XmlNodeType NodeType
{
[Token(Token = "0x60003B5")]
[Address(RVA = "0x4B1E00", Offset = "0x4B0C00", VA = "0x1804B1E00", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// <summary>Creates a duplicate of this node. Notation nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlNotation" /> object throws an exception.</summary>
/// <param name="deep">
/// <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself.</param>
/// <returns>Returns a <see cref="T:System.Xml.XmlNode" /> copy of the node from which the method is called.</returns>
/// <exception cref="T:System.InvalidOperationException">Notation nodes cannot be cloned. Calling this method on an <see cref="T:System.Xml.XmlNotation" /> object throws an exception.</exception>
// Token: 0x060003B6 RID: 950 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003B6")]
[Address(RVA = "0x5DF7E0", Offset = "0x5DE5E0", VA = "0x1805DF7E0", Slot = "27")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// <summary>Gets a value indicating whether the node is read-only.</summary>
/// <returns>
/// <see langword="true" /> if the node is read-only; otherwise <see langword="false" />.Because <see langword="XmlNotation" /> nodes are read-only, this property always returns <see langword="true" />.</returns>
// Token: 0x1700017C RID: 380
// (get) Token: 0x060003B7 RID: 951 RVA: 0x00003558 File Offset: 0x00001758
[Token(Token = "0x1700017C")]
public override bool IsReadOnly
{
[Token(Token = "0x60003B7")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "32")]
get
{
return default(bool);
}
}
/// <summary>Gets the markup representing the children of this node.</summary>
/// <returns>For <see langword="XmlNotation" /> nodes, String.Empty is returned.</returns>
/// <exception cref="T:System.InvalidOperationException">Attempting to set the property. </exception>
// Token: 0x1700017D RID: 381
// (set) Token: 0x060003B8 RID: 952 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700017D")]
public override string InnerXml
{
[Token(Token = "0x60003B8")]
[Address(RVA = "0x5DF930", Offset = "0x5DE730", VA = "0x1805DF930", Slot = "35")]
set
{
}
}
// Token: 0x0400019B RID: 411
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400019B")]
private string publicId;
// Token: 0x0400019C RID: 412
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400019C")]
private string systemId;
// Token: 0x0400019D RID: 413
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400019D")]
private string name;
}
}