using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents a notation declaration, such as <!NOTATION... >.
// Token: 0x020000C3 RID: 195
[Token(Token = "0x20000C3")]
public class XmlNotation : XmlNode
{
// Token: 0x06000A27 RID: 2599 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A27")]
[Address(RVA = "0x4B2AA0", Offset = "0x4B1AA0", VA = "0x1804B2AA0")]
internal XmlNotation(string name, string publicId, string systemId, XmlDocument doc)
{
}
/// Gets the name of the current node.
/// The name of the notation.
// Token: 0x170002E0 RID: 736
// (get) Token: 0x06000A28 RID: 2600 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002E0")]
public override string Name
{
[Token(Token = "0x6000A28")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "6")]
get
{
return null;
}
}
/// Gets the name of the current node without the namespace prefix.
/// For nodes, this property returns the name of the notation.
// Token: 0x170002E1 RID: 737
// (get) Token: 0x06000A29 RID: 2601 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002E1")]
public override string LocalName
{
[Token(Token = "0x6000A29")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "36")]
get
{
return null;
}
}
/// Gets the type of the current node.
/// The node type. For nodes, the value is XmlNodeType.Notation.
// Token: 0x170002E2 RID: 738
// (get) Token: 0x06000A2A RID: 2602 RVA: 0x00005988 File Offset: 0x00003B88
[Token(Token = "0x170002E2")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A2A")]
[Address(RVA = "0x4B2B30", Offset = "0x4B1B30", VA = "0x1804B2B30", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// Creates a duplicate of this node. Notation nodes cannot be cloned. Calling this method on an object throws an exception.
///
/// to recursively clone the subtree under the specified node; to clone only the node itself.
/// Returns a copy of the node from which the method is called.
/// Notation nodes cannot be cloned. Calling this method on an object throws an exception.
// Token: 0x06000A2B RID: 2603 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A2B")]
[Address(RVA = "0x4B2A30", Offset = "0x4B1A30", VA = "0x1804B2A30", Slot = "31")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// Gets a value indicating whether the node is read-only.
///
/// if the node is read-only; otherwise .Because nodes are read-only, this property always returns .
// Token: 0x170002E3 RID: 739
// (get) Token: 0x06000A2C RID: 2604 RVA: 0x000059A0 File Offset: 0x00003BA0
[Token(Token = "0x170002E3")]
public override bool IsReadOnly
{
[Token(Token = "0x6000A2C")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "37")]
get
{
return default(bool);
}
}
/// Gets the markup representing the children of this node.
/// For nodes, String.Empty is returned.
/// Attempting to set the property.
// Token: 0x170002E4 RID: 740
// (set) Token: 0x06000A2D RID: 2605 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002E4")]
public override string InnerXml
{
[Token(Token = "0x6000A2D")]
[Address(RVA = "0x4B2B40", Offset = "0x4B1B40", VA = "0x1804B2B40", Slot = "40")]
set
{
}
}
/// Saves the node to the specified . This method has no effect on nodes.
/// The to which you want to save.
// Token: 0x06000A2E RID: 2606 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A2E")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "43")]
public override void WriteTo(XmlWriter w)
{
}
/// Saves the children of the node to the specified . This method has no effect on nodes.
/// The to which you want to save.
// Token: 0x06000A2F RID: 2607 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A2F")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x0400055C RID: 1372
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400055C")]
private string publicId;
// Token: 0x0400055D RID: 1373
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x400055D")]
private string systemId;
// Token: 0x0400055E RID: 1374
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400055E")]
private string name;
}
}