using System; using Cpp2IlInjected; namespace System.Xml { /// Represents an entity declaration, such as <!ENTITY... >. // Token: 0x02000041 RID: 65 [Token(Token = "0x2000041")] public class XmlEntity : XmlNode { // Token: 0x060002FE RID: 766 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60002FE")] [Address(RVA = "0x46CAA0", Offset = "0x46B8A0", VA = "0x18046CAA0")] internal XmlEntity(string name, string strdata, string publicId, string systemId, string notationName, XmlDocument doc) { } /// Creates a duplicate of this node. Entity 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 from which the method is called. /// Entity nodes cannot be cloned. Calling this method on an object throws an exception. // Token: 0x060002FF RID: 767 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60002FF")] [Address(RVA = "0x46CA10", Offset = "0x46B810", VA = "0x18046CA10", 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: 0x17000132 RID: 306 // (get) Token: 0x06000300 RID: 768 RVA: 0x00003240 File Offset: 0x00001440 [Token(Token = "0x17000132")] public override bool IsReadOnly { [Token(Token = "0x6000300")] [Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "32")] get { return default(bool); } } /// Gets the name of the node. /// The name of the entity. // Token: 0x17000133 RID: 307 // (get) Token: 0x06000301 RID: 769 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000133")] public override string Name { [Token(Token = "0x6000301")] [Address(RVA = "0x3FA180", Offset = "0x3F8F80", VA = "0x1803FA180", Slot = "6")] get { return null; } } /// Gets the name of the node without the namespace prefix. /// For nodes, this property returns the name of the entity. // Token: 0x17000134 RID: 308 // (get) Token: 0x06000302 RID: 770 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000134")] public override string LocalName { [Token(Token = "0x6000302")] [Address(RVA = "0x3FA180", Offset = "0x3F8F80", VA = "0x1803FA180", Slot = "31")] get { return null; } } /// Gets the concatenated values of the entity node and all its children. /// The concatenated values of the node and all its children. /// Attempting to set the property. // Token: 0x17000135 RID: 309 // (get) Token: 0x06000303 RID: 771 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000304 RID: 772 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000135")] public override string InnerText { [Token(Token = "0x6000303")] [Address(RVA = "0x46C0C0", Offset = "0x46AEC0", VA = "0x18046C0C0", Slot = "33")] get { return null; } [Token(Token = "0x6000304")] [Address(RVA = "0x46CC60", Offset = "0x46BA60", VA = "0x18046CC60", Slot = "34")] set { } } // Token: 0x17000136 RID: 310 // (get) Token: 0x06000305 RID: 773 RVA: 0x00003258 File Offset: 0x00001458 [Token(Token = "0x17000136")] internal override bool IsContainer { [Token(Token = "0x6000305")] [Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "18")] get { return default(bool); } } // Token: 0x17000137 RID: 311 // (get) Token: 0x06000306 RID: 774 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000307 RID: 775 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000137")] internal override XmlLinkedNode LastNode { [Token(Token = "0x6000306")] [Address(RVA = "0x46CB50", Offset = "0x46B950", VA = "0x18046CB50", Slot = "19")] get { return null; } [Token(Token = "0x6000307")] [Address(RVA = "0x46AA50", Offset = "0x469850", VA = "0x18046AA50", Slot = "20")] set { } } // Token: 0x06000308 RID: 776 RVA: 0x00003270 File Offset: 0x00001470 [Token(Token = "0x6000308")] [Address(RVA = "0x46CA80", Offset = "0x46B880", VA = "0x18046CA80", Slot = "24")] internal override bool IsValidChildType(XmlNodeType type) { return default(bool); } /// Gets the type of the node. /// The node type. For nodes, the value is XmlNodeType.Entity. // Token: 0x17000138 RID: 312 // (get) Token: 0x06000309 RID: 777 RVA: 0x00003288 File Offset: 0x00001488 [Token(Token = "0x17000138")] public override XmlNodeType NodeType { [Token(Token = "0x6000309")] [Address(RVA = "0x46CC50", Offset = "0x46BA50", VA = "0x18046CC50", Slot = "9")] get { return XmlNodeType.None; } } /// Gets the value of the system identifier on the entity declaration. /// The system identifier on the entity. If there is no system identifier, is returned. // Token: 0x17000139 RID: 313 // (get) Token: 0x0600030A RID: 778 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000139")] public string SystemId { [Token(Token = "0x600030A")] [Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")] get { return null; } } /// Gets the markup representing the children of this node. /// For nodes, String.Empty is returned. /// Attempting to set the property. // Token: 0x1700013A RID: 314 // (set) Token: 0x0600030B RID: 779 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700013A")] public override string InnerXml { [Token(Token = "0x600030B")] [Address(RVA = "0x46CCD0", Offset = "0x46BAD0", VA = "0x18046CCD0", Slot = "35")] set { } } /// Gets the base Uniform Resource Identifier (URI) of the current node. /// The location from which the node was loaded. // Token: 0x1700013B RID: 315 // (get) Token: 0x0600030C RID: 780 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700013B")] public override string BaseURI { [Token(Token = "0x600030C")] [Address(RVA = "0x408890", Offset = "0x407690", VA = "0x180408890", Slot = "36")] get { return null; } } // Token: 0x0600030D RID: 781 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600030D")] [Address(RVA = "0x403B30", Offset = "0x402930", VA = "0x180403B30")] internal void SetBaseURI(string inBaseURI) { } // Token: 0x04000171 RID: 369 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000171")] private string publicId; // Token: 0x04000172 RID: 370 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000172")] private string systemId; // Token: 0x04000173 RID: 371 [FieldOffset(Offset = "0x28")] [Token(Token = "0x4000173")] private string notationName; // Token: 0x04000174 RID: 372 [FieldOffset(Offset = "0x30")] [Token(Token = "0x4000174")] private string name; // Token: 0x04000175 RID: 373 [FieldOffset(Offset = "0x38")] [Token(Token = "0x4000175")] private string unparsedReplacementStr; // Token: 0x04000176 RID: 374 [FieldOffset(Offset = "0x40")] [Token(Token = "0x4000176")] private string baseURI; // Token: 0x04000177 RID: 375 [FieldOffset(Offset = "0x48")] [Token(Token = "0x4000177")] private XmlLinkedNode lastChild; // Token: 0x04000178 RID: 376 [FieldOffset(Offset = "0x50")] [Token(Token = "0x4000178")] private bool childrenFoliating; } }