using System; using Cpp2IlInjected; namespace System.Xml { /// Represents an entity declaration, such as <!ENTITY... >. // Token: 0x020000B1 RID: 177 [Token(Token = "0x20000B1")] public class XmlEntity : XmlNode { // Token: 0x060008FD RID: 2301 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60008FD")] [Address(RVA = "0x93FCB0", Offset = "0x93ECB0", VA = "0x18093FCB0")] 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: 0x060008FE RID: 2302 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60008FE")] [Address(RVA = "0x93FC20", Offset = "0x93EC20", VA = "0x18093FC20", 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: 0x17000270 RID: 624 // (get) Token: 0x060008FF RID: 2303 RVA: 0x00005280 File Offset: 0x00003480 [Token(Token = "0x17000270")] public override bool IsReadOnly { [Token(Token = "0x60008FF")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "37")] get { return default(bool); } } /// Gets the name of the node. /// The name of the entity. // Token: 0x17000271 RID: 625 // (get) Token: 0x06000900 RID: 2304 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000271")] public override string Name { [Token(Token = "0x6000900")] [Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0", 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: 0x17000272 RID: 626 // (get) Token: 0x06000901 RID: 2305 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000272")] public override string LocalName { [Token(Token = "0x6000901")] [Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0", Slot = "36")] 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: 0x17000273 RID: 627 // (get) Token: 0x06000902 RID: 2306 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000903 RID: 2307 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000273")] public override string InnerText { [Token(Token = "0x6000902")] [Address(RVA = "0x939D30", Offset = "0x938D30", VA = "0x180939D30", Slot = "38")] get { return null; } [Token(Token = "0x6000903")] [Address(RVA = "0x93FE50", Offset = "0x93EE50", VA = "0x18093FE50", Slot = "39")] set { } } // Token: 0x17000274 RID: 628 // (get) Token: 0x06000904 RID: 2308 RVA: 0x00005298 File Offset: 0x00003498 [Token(Token = "0x17000274")] internal override bool IsContainer { [Token(Token = "0x6000904")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "18")] get { return default(bool); } } // Token: 0x17000275 RID: 629 // (get) Token: 0x06000905 RID: 2309 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000906 RID: 2310 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000275")] internal override XmlLinkedNode LastNode { [Token(Token = "0x6000905")] [Address(RVA = "0x93FD50", Offset = "0x93ED50", VA = "0x18093FD50", Slot = "19")] get { return null; } [Token(Token = "0x6000906")] [Address(RVA = "0x55BCF0", Offset = "0x55ACF0", VA = "0x18055BCF0", Slot = "20")] set { } } // Token: 0x06000907 RID: 2311 RVA: 0x000052B0 File Offset: 0x000034B0 [Token(Token = "0x6000907")] [Address(RVA = "0x93FC90", Offset = "0x93EC90", VA = "0x18093FC90", Slot = "27")] 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: 0x17000276 RID: 630 // (get) Token: 0x06000908 RID: 2312 RVA: 0x000052C8 File Offset: 0x000034C8 [Token(Token = "0x17000276")] public override XmlNodeType NodeType { [Token(Token = "0x6000908")] [Address(RVA = "0x62FA10", Offset = "0x62EA10", VA = "0x18062FA10", 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: 0x17000277 RID: 631 // (get) Token: 0x06000909 RID: 2313 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000277")] public string SystemId { [Token(Token = "0x6000909")] [Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")] get { return null; } } /// Gets the markup representing the children of this node. /// For nodes, String.Empty is returned. /// Attempting to set the property. // Token: 0x17000278 RID: 632 // (set) Token: 0x0600090A RID: 2314 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000278")] public override string InnerXml { [Token(Token = "0x600090A")] [Address(RVA = "0x93FEC0", Offset = "0x93EEC0", VA = "0x18093FEC0", Slot = "40")] set { } } /// Saves the node to the specified . For nodes, this method has no effect. /// The to which you want to save. // Token: 0x0600090B RID: 2315 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600090B")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "43")] public override void WriteTo(XmlWriter w) { } /// Saves all the children of the node to the specified . For nodes, this method has no effect. /// The to which you want to save. // Token: 0x0600090C RID: 2316 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600090C")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")] public override void WriteContentTo(XmlWriter w) { } /// Gets the base Uniform Resource Identifier (URI) of the current node. /// The location from which the node was loaded. // Token: 0x17000279 RID: 633 // (get) Token: 0x0600090D RID: 2317 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000279")] public override string BaseURI { [Token(Token = "0x600090D")] [Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680", Slot = "42")] get { return null; } } // Token: 0x0600090E RID: 2318 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600090E")] [Address(RVA = "0x417960", Offset = "0x416960", VA = "0x180417960")] internal void SetBaseURI(string inBaseURI) { } // Token: 0x04000516 RID: 1302 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000516")] private string publicId; // Token: 0x04000517 RID: 1303 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000517")] private string systemId; // Token: 0x04000518 RID: 1304 [FieldOffset(Offset = "0x28")] [Token(Token = "0x4000518")] private string notationName; // Token: 0x04000519 RID: 1305 [FieldOffset(Offset = "0x30")] [Token(Token = "0x4000519")] private string name; // Token: 0x0400051A RID: 1306 [FieldOffset(Offset = "0x38")] [Token(Token = "0x400051A")] private string unparsedReplacementStr; // Token: 0x0400051B RID: 1307 [FieldOffset(Offset = "0x40")] [Token(Token = "0x400051B")] private string baseURI; // Token: 0x0400051C RID: 1308 [FieldOffset(Offset = "0x48")] [Token(Token = "0x400051C")] private XmlLinkedNode lastChild; // Token: 0x0400051D RID: 1309 [FieldOffset(Offset = "0x50")] [Token(Token = "0x400051D")] private bool childrenFoliating; } }