using System; using Cpp2IlInjected; namespace System.Xml { /// Represents a notation declaration, such as <!NOTATION... >. // 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) { } /// Gets the name of the current node. /// The name of the notation. // 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; } } /// Gets the name of the current node without the namespace prefix. /// For nodes, this property returns the name of the notation. // 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; } } /// Gets the type of the current node. /// The node type. For nodes, the value is XmlNodeType.Notation. // 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; } } /// 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: 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; } /// 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: 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); } } /// Gets the markup representing the children of this node. /// For nodes, String.Empty is returned. /// Attempting to set the property. // 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; } }