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

599 lines
26 KiB
C#

using System;
using System.Collections;
using System.Diagnostics;
using System.Reflection;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents a single node in the XML document. </summary>
// Token: 0x0200004C RID: 76
[Token(Token = "0x200004C")]
[DebuggerDisplay("{debuggerDisplayProxy}")]
[DefaultMember("Item")]
public abstract class XmlNode : ICloneable, IEnumerable
{
// Token: 0x06000373 RID: 883 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000373")]
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
internal XmlNode()
{
}
// Token: 0x06000374 RID: 884 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000374")]
[Address(RVA = "0x5DEE50", Offset = "0x5DDC50", VA = "0x1805DEE50")]
internal XmlNode(XmlDocument doc)
{
}
/// <summary>Gets the qualified name of the node, when overridden in a derived class.</summary>
/// <returns>The qualified name of the node. The name returned is dependent on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node: Type Name Attribute The qualified name of the attribute. CDATA #cdata-section Comment #comment Document #document DocumentFragment #document-fragment DocumentType The document type name. Element The qualified name of the element. Entity The name of the entity. EntityReference The name of the entity referenced. Notation The notation name. ProcessingInstruction The target of the processing instruction. Text #text Whitespace #whitespace SignificantWhitespace #significant-whitespace XmlDeclaration #xml-declaration </returns>
// Token: 0x17000160 RID: 352
// (get) Token: 0x06000375 RID: 885
[Token(Token = "0x17000160")]
public abstract string Name
{
[Token(Token = "0x6000375")]
[Address(Slot = "6")]
get;
}
/// <summary>Gets or sets the value of the node.</summary>
/// <returns>The value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node: Type Value Attribute The value of the attribute. CDATASection The content of the CDATA Section. Comment The content of the comment. Document
/// <see langword="null" />. DocumentFragment
/// <see langword="null" />. DocumentType
/// <see langword="null" />. Element
/// <see langword="null" />. You can use the <see cref="P:System.Xml.XmlElement.InnerText" /> or <see cref="P:System.Xml.XmlElement.InnerXml" /> properties to access the value of the element node. Entity
/// <see langword="null" />. EntityReference
/// <see langword="null" />. Notation
/// <see langword="null" />. ProcessingInstruction The entire content excluding the target. Text The content of the text node. SignificantWhitespace The white space characters. White space can consist of one or more space characters, carriage returns, line feeds, or tabs. Whitespace The white space characters. White space can consist of one or more space characters, carriage returns, line feeds, or tabs. XmlDeclaration The content of the declaration (that is, everything between &lt;?xml and ?&gt;). </returns>
/// <exception cref="T:System.ArgumentException">Setting the value of a node that is read-only. </exception>
/// <exception cref="T:System.InvalidOperationException">Setting the value of a node that is not supposed to have a value (for example, an Element node). </exception>
// Token: 0x17000161 RID: 353
// (get) Token: 0x06000376 RID: 886 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000377 RID: 887 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000161")]
public virtual string Value
{
[Token(Token = "0x6000376")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000377")]
[Address(RVA = "0x5DF6E0", Offset = "0x5DE4E0", VA = "0x1805DF6E0", Slot = "8")]
set
{
}
}
/// <summary>Gets the type of the current node, when overridden in a derived class.</summary>
/// <returns>One of the <see cref="T:System.Xml.XmlNodeType" /> values.</returns>
// Token: 0x17000162 RID: 354
// (get) Token: 0x06000378 RID: 888
[Token(Token = "0x17000162")]
public abstract XmlNodeType NodeType
{
[Token(Token = "0x6000378")]
[Address(Slot = "9")]
get;
}
/// <summary>Gets the parent of this node (for nodes that can have parents).</summary>
/// <returns>The <see langword="XmlNode" /> that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.NodeType Return Value of ParentNode Attribute, Document, DocumentFragment, Entity, Notation Returns <see langword="null" />; these nodes do not have parents. CDATA Returns the element or entity reference containing the CDATA section. Comment Returns the element, entity reference, document type, or document containing the comment. DocumentType Returns the document node. Element Returns the parent node of the element. If the element is the root node in the tree, the parent is the document node. EntityReference Returns the element, attribute, or entity reference containing the entity reference. ProcessingInstruction Returns the document, element, document type, or entity reference containing the processing instruction. Text Returns the parent element, attribute, or entity reference containing the text node. </returns>
// Token: 0x17000163 RID: 355
// (get) Token: 0x06000379 RID: 889 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000163")]
public virtual XmlNode ParentNode
{
[Token(Token = "0x6000379")]
[Address(RVA = "0x5DF440", Offset = "0x5DE240", VA = "0x1805DF440", Slot = "10")]
get
{
return null;
}
}
/// <summary>Gets all the child nodes of the node.</summary>
/// <returns>An object that contains all the child nodes of the node.If there are no child nodes, this property returns an empty <see cref="T:System.Xml.XmlNodeList" />.</returns>
// Token: 0x17000164 RID: 356
// (get) Token: 0x0600037A RID: 890 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000164")]
public virtual XmlNodeList ChildNodes
{
[Token(Token = "0x600037A")]
[Address(RVA = "0x5DEFE0", Offset = "0x5DDDE0", VA = "0x1805DEFE0", Slot = "11")]
get
{
return null;
}
}
/// <summary>Gets the node immediately preceding this node.</summary>
/// <returns>The preceding <see langword="XmlNode" />. If there is no preceding node, <see langword="null" /> is returned.</returns>
// Token: 0x17000165 RID: 357
// (get) Token: 0x0600037B RID: 891 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000165")]
public virtual XmlNode PreviousSibling
{
[Token(Token = "0x600037B")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "12")]
get
{
return null;
}
}
/// <summary>Gets the node immediately following this node.</summary>
/// <returns>The next <see langword="XmlNode" />. If there is no next node, <see langword="null" /> is returned.</returns>
// Token: 0x17000166 RID: 358
// (get) Token: 0x0600037C RID: 892 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000166")]
public virtual XmlNode NextSibling
{
[Token(Token = "0x600037C")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "13")]
get
{
return null;
}
}
/// <summary>Gets an <see cref="T:System.Xml.XmlAttributeCollection" /> containing the attributes of this node.</summary>
/// <returns>An <see langword="XmlAttributeCollection" /> containing the attributes of the node.If the node is of type XmlNodeType.Element, the attributes of the node are returned. Otherwise, this property returns <see langword="null" />.</returns>
// Token: 0x17000167 RID: 359
// (get) Token: 0x0600037D RID: 893 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000167")]
public virtual XmlAttributeCollection Attributes
{
[Token(Token = "0x600037D")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "14")]
get
{
return null;
}
}
/// <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</summary>
/// <returns>The <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.If the node is an <see cref="T:System.Xml.XmlDocument" /> (NodeType equals XmlNodeType.Document), this property returns <see langword="null" />.</returns>
// Token: 0x17000168 RID: 360
// (get) Token: 0x0600037E RID: 894 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000168")]
public virtual XmlDocument OwnerDocument
{
[Token(Token = "0x600037E")]
[Address(RVA = "0x5DF370", Offset = "0x5DE170", VA = "0x1805DF370", Slot = "15")]
get
{
return null;
}
}
/// <summary>Gets the first child of the node.</summary>
/// <returns>The first child of the node. If there is no such node, <see langword="null" /> is returned.</returns>
// Token: 0x17000169 RID: 361
// (get) Token: 0x0600037F RID: 895 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000169")]
public virtual XmlNode FirstChild
{
[Token(Token = "0x600037F")]
[Address(RVA = "0x5DF0E0", Offset = "0x5DDEE0", VA = "0x1805DF0E0", Slot = "16")]
get
{
return null;
}
}
/// <summary>Gets the last child of the node.</summary>
/// <returns>The last child of the node. If there is no such node, <see langword="null" /> is returned.</returns>
// Token: 0x1700016A RID: 362
// (get) Token: 0x06000380 RID: 896 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700016A")]
public virtual XmlNode LastChild
{
[Token(Token = "0x6000380")]
[Address(RVA = "0x5DF310", Offset = "0x5DE110", VA = "0x1805DF310", Slot = "17")]
get
{
return null;
}
}
// Token: 0x1700016B RID: 363
// (get) Token: 0x06000381 RID: 897 RVA: 0x00003468 File Offset: 0x00001668
[Token(Token = "0x1700016B")]
internal virtual bool IsContainer
{
[Token(Token = "0x6000381")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "18")]
get
{
return default(bool);
}
}
// Token: 0x1700016C RID: 364
// (get) Token: 0x06000382 RID: 898 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000383 RID: 899 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700016C")]
internal virtual XmlLinkedNode LastNode
{
[Token(Token = "0x6000382")]
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "19")]
get
{
return null;
}
[Token(Token = "0x6000383")]
[Address(RVA = "0x402080", Offset = "0x400E80", VA = "0x180402080", Slot = "20")]
set
{
}
}
// Token: 0x06000384 RID: 900 RVA: 0x00003480 File Offset: 0x00001680
[Token(Token = "0x6000384")]
[Address(RVA = "0x5DD7B0", Offset = "0x5DC5B0", VA = "0x1805DD7B0")]
internal bool AncestorNode(XmlNode node)
{
return default(bool);
}
/// <summary>Removes specified child node.</summary>
/// <param name="oldChild">The node being removed. </param>
/// <returns>The node removed.</returns>
/// <exception cref="T:System.ArgumentException">The <paramref name="oldChild" /> is not a child of this node. Or this node is read-only. </exception>
// Token: 0x06000385 RID: 901 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000385")]
[Address(RVA = "0x5DE8D0", Offset = "0x5DD6D0", VA = "0x1805DE8D0", Slot = "21")]
public virtual XmlNode RemoveChild(XmlNode oldChild)
{
return null;
}
/// <summary>Adds the specified node to the end of the list of child nodes, of this node.</summary>
/// <param name="newChild">The node to add. All the contents of the node to be added are moved into the specified location. </param>
/// <returns>The node added.</returns>
/// <exception cref="T:System.InvalidOperationException">This node is of a type that does not allow child nodes of the type of the <paramref name="newChild" /> node.The <paramref name="newChild" /> is an ancestor of this node. </exception>
/// <exception cref="T:System.ArgumentException">The <paramref name="newChild" /> was created from a different document than the one that created this node.This node is read-only. </exception>
// Token: 0x06000386 RID: 902 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000386")]
[Address(RVA = "0x5DDAF0", Offset = "0x5DC8F0", VA = "0x1805DDAF0", Slot = "22")]
public virtual XmlNode AppendChild(XmlNode newChild)
{
return null;
}
// Token: 0x06000387 RID: 903 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000387")]
[Address(RVA = "0x5DD820", Offset = "0x5DC620", VA = "0x1805DD820", Slot = "23")]
internal virtual XmlNode AppendChildForLoad(XmlNode newChild, XmlDocument doc)
{
return null;
}
// Token: 0x06000388 RID: 904 RVA: 0x00003498 File Offset: 0x00001698
[Token(Token = "0x6000388")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "24")]
internal virtual bool IsValidChildType(XmlNodeType type)
{
return default(bool);
}
// Token: 0x06000389 RID: 905 RVA: 0x000034B0 File Offset: 0x000016B0
[Token(Token = "0x6000389")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "25")]
internal virtual bool CanInsertAfter(XmlNode newChild, XmlNode refChild)
{
return default(bool);
}
/// <summary>Gets a value indicating whether this node has any child nodes.</summary>
/// <returns>
/// <see langword="true" /> if the node has child nodes; otherwise, <see langword="false" />.</returns>
// Token: 0x1700016D RID: 365
// (get) Token: 0x0600038A RID: 906 RVA: 0x000034C8 File Offset: 0x000016C8
[Token(Token = "0x1700016D")]
public virtual bool HasChildNodes
{
[Token(Token = "0x600038A")]
[Address(RVA = "0x5DF110", Offset = "0x5DDF10", VA = "0x1805DF110", Slot = "26")]
get
{
return default(bool);
}
}
/// <summary>Creates a duplicate of the node, when overridden in a derived class.</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>The cloned node.</returns>
/// <exception cref="T:System.InvalidOperationException">Calling this method on a node type that cannot be cloned. </exception>
// Token: 0x0600038B RID: 907
[Token(Token = "0x600038B")]
[Address(Slot = "27")]
public abstract XmlNode CloneNode(bool deep);
// Token: 0x0600038C RID: 908 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600038C")]
[Address(RVA = "0x5DE090", Offset = "0x5DCE90", VA = "0x1805DE090", Slot = "28")]
internal virtual void CopyChildren(XmlDocument doc, XmlNode container, bool deep)
{
}
/// <summary>Gets the namespace URI of this node.</summary>
/// <returns>The namespace URI of this node. If there is no namespace URI, this property returns String.Empty.</returns>
// Token: 0x1700016E RID: 366
// (get) Token: 0x0600038D RID: 909 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700016E")]
public virtual string NamespaceURI
{
[Token(Token = "0x600038D")]
[Address(RVA = "0x5DF330", Offset = "0x5DE130", VA = "0x1805DF330", Slot = "29")]
get
{
return null;
}
}
/// <summary>Gets or sets the namespace prefix of this node.</summary>
/// <returns>The namespace prefix of this node. For example, <see langword="Prefix" /> is bk for the element &lt;bk:book&gt;. If there is no prefix, this property returns String.Empty.</returns>
/// <exception cref="T:System.ArgumentException">This node is read-only. </exception>
/// <exception cref="T:System.Xml.XmlException">The specified prefix contains an invalid character.The specified prefix is malformed.The specified prefix is "xml" and the namespaceURI of this node is different from "http://www.w3.org/XML/1998/namespace".This node is an attribute and the specified prefix is "xmlns" and the namespaceURI of this node is different from "http://www.w3.org/2000/xmlns/ ".This node is an attribute and the qualifiedName of this node is "xmlns". </exception>
// Token: 0x1700016F RID: 367
// (get) Token: 0x0600038E RID: 910 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700016F")]
public virtual string Prefix
{
[Token(Token = "0x600038E")]
[Address(RVA = "0x5DF530", Offset = "0x5DE330", VA = "0x1805DF530", Slot = "30")]
get
{
return null;
}
}
/// <summary>Gets the local name of the node, when overridden in a derived class.</summary>
/// <returns>The name of the node with the prefix removed. For example, <see langword="LocalName" /> is book for the element &lt;bk:book&gt;.The name returned is dependent on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node: Type Name Attribute The local name of the attribute. CDATA #cdata-section Comment #comment Document #document DocumentFragment #document-fragment DocumentType The document type name. Element The local name of the element. Entity The name of the entity. EntityReference The name of the entity referenced. Notation The notation name. ProcessingInstruction The target of the processing instruction. Text #text Whitespace #whitespace SignificantWhitespace #significant-whitespace XmlDeclaration #xml-declaration </returns>
// Token: 0x17000170 RID: 368
// (get) Token: 0x0600038F RID: 911
[Token(Token = "0x17000170")]
public abstract string LocalName
{
[Token(Token = "0x600038F")]
[Address(Slot = "31")]
get;
}
/// <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" />.</returns>
// Token: 0x17000171 RID: 369
// (get) Token: 0x06000390 RID: 912 RVA: 0x000034E0 File Offset: 0x000016E0
[Token(Token = "0x17000171")]
public virtual bool IsReadOnly
{
[Token(Token = "0x6000390")]
[Address(RVA = "0x5DF240", Offset = "0x5DE040", VA = "0x1805DF240", Slot = "32")]
get
{
return default(bool);
}
}
// Token: 0x06000391 RID: 913 RVA: 0x000034F8 File Offset: 0x000016F8
[Token(Token = "0x6000391")]
[Address(RVA = "0x5DE770", Offset = "0x5DD570", VA = "0x1805DE770")]
internal static bool HasReadOnlyParent(XmlNode n)
{
return default(bool);
}
/// <summary>For a description of this member, see <see cref="M:System.Xml.XmlNode.Clone" />.</summary>
/// <returns>A copy of the node from which it is called.</returns>
// Token: 0x06000392 RID: 914 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000392")]
[Address(RVA = "0x5DEDF0", Offset = "0x5DDBF0", VA = "0x1805DEDF0", Slot = "4")]
object ICloneable.Clone()
{
return null;
}
/// <summary>For a description of this member, see <see cref="M:System.Xml.XmlNode.GetEnumerator" />.</summary>
/// <returns>Returns an enumerator for the collection.</returns>
// Token: 0x06000393 RID: 915 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000393")]
[Address(RVA = "0x5DED90", Offset = "0x5DDB90", VA = "0x1805DED90", Slot = "5")]
IEnumerator IEnumerable.GetEnumerator()
{
return null;
}
// Token: 0x06000394 RID: 916 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000394")]
[Address(RVA = "0x5DD9D0", Offset = "0x5DC7D0", VA = "0x1805DD9D0")]
private void AppendChildText(StringBuilder builder)
{
}
/// <summary>Gets or sets the concatenated values of the node and all its child nodes.</summary>
/// <returns>The concatenated values of the node and all its child nodes.</returns>
// Token: 0x17000172 RID: 370
// (get) Token: 0x06000395 RID: 917 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000396 RID: 918 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000172")]
public virtual string InnerText
{
[Token(Token = "0x6000395")]
[Address(RVA = "0x5DF130", Offset = "0x5DDF30", VA = "0x1805DF130", Slot = "33")]
get
{
return null;
}
[Token(Token = "0x6000396")]
[Address(RVA = "0x5DF570", Offset = "0x5DE370", VA = "0x1805DF570", Slot = "34")]
set
{
}
}
/// <summary>Gets or sets the markup representing only the child nodes of this node.</summary>
/// <returns>The markup of the child nodes of this node.
/// <see langword="InnerXml" /> does not return default attributes.</returns>
/// <exception cref="T:System.InvalidOperationException">Setting this property on a node that cannot have child nodes. </exception>
/// <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed. </exception>
// Token: 0x17000173 RID: 371
// (set) Token: 0x06000397 RID: 919 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000173")]
public virtual string InnerXml
{
[Token(Token = "0x6000397")]
[Address(RVA = "0x5DF670", Offset = "0x5DE470", VA = "0x1805DF670", Slot = "35")]
set
{
}
}
/// <summary>Gets the base URI of the current node.</summary>
/// <returns>The location from which the node was loaded or String.Empty if the node has no base URI.</returns>
// Token: 0x17000174 RID: 372
// (get) Token: 0x06000398 RID: 920 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000174")]
public virtual string BaseURI
{
[Token(Token = "0x6000398")]
[Address(RVA = "0x5DEEE0", Offset = "0x5DDCE0", VA = "0x1805DEEE0", Slot = "36")]
get
{
return null;
}
}
/// <summary>Removes all the child nodes and/or attributes of the current node.</summary>
// Token: 0x06000399 RID: 921 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000399")]
[Address(RVA = "0x5DE850", Offset = "0x5DD650", VA = "0x1805DE850", Slot = "37")]
public virtual void RemoveAll()
{
}
// Token: 0x17000175 RID: 373
// (get) Token: 0x0600039A RID: 922 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000175")]
internal XmlDocument Document
{
[Token(Token = "0x600039A")]
[Address(RVA = "0x5DF040", Offset = "0x5DDE40", VA = "0x1805DF040")]
get
{
return null;
}
}
/// <summary>Looks up the closest xmlns declaration for the given namespace URI that is in scope for the current node and returns the prefix defined in that declaration.</summary>
/// <param name="namespaceURI">The namespace URI whose prefix you want to find. </param>
/// <returns>The prefix for the specified namespace URI.</returns>
// Token: 0x0600039B RID: 923 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600039B")]
[Address(RVA = "0x5DE710", Offset = "0x5DD510", VA = "0x1805DE710", Slot = "38")]
public virtual string GetPrefixOfNamespace(string namespaceURI)
{
return null;
}
// Token: 0x0600039C RID: 924 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600039C")]
[Address(RVA = "0x5DE2F0", Offset = "0x5DD0F0", VA = "0x1805DE2F0")]
internal string GetPrefixOfNamespaceStrict(string namespaceURI)
{
return null;
}
// Token: 0x0600039D RID: 925 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600039D")]
[Address(RVA = "0x5DEC90", Offset = "0x5DDA90", VA = "0x1805DEC90", Slot = "39")]
internal virtual void SetParent(XmlNode node)
{
}
// Token: 0x0600039E RID: 926 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600039E")]
[Address(RVA = "0x3F7200", Offset = "0x3F6000", VA = "0x1803F7200", Slot = "40")]
internal virtual void SetParentForLoad(XmlNode node)
{
}
// Token: 0x0600039F RID: 927 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600039F")]
[Address(RVA = "0x5DECD0", Offset = "0x5DDAD0", VA = "0x1805DECD0")]
internal static void SplitName(string name, out string prefix, out string localName)
{
}
// Token: 0x060003A0 RID: 928 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003A0")]
[Address(RVA = "0x5DE140", Offset = "0x5DCF40", VA = "0x1805DE140", Slot = "41")]
internal virtual XmlNode FindChild(XmlNodeType type)
{
return null;
}
// Token: 0x060003A1 RID: 929 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003A1")]
[Address(RVA = "0x5DE1C0", Offset = "0x5DCFC0", VA = "0x1805DE1C0", Slot = "42")]
internal virtual XmlNodeChangedEventArgs GetEventArgs(XmlNode node, XmlNode oldParent, XmlNode newParent, string oldValue, string newValue, XmlNodeChangedAction action)
{
return null;
}
// Token: 0x060003A2 RID: 930 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003A2")]
[Address(RVA = "0x5DE040", Offset = "0x5DCE40", VA = "0x1805DE040", Slot = "43")]
internal virtual void BeforeEvent(XmlNodeChangedEventArgs args)
{
}
// Token: 0x060003A3 RID: 931 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003A3")]
[Address(RVA = "0x5DD760", Offset = "0x5DC560", VA = "0x1805DD760", Slot = "44")]
internal virtual void AfterEvent(XmlNodeChangedEventArgs args)
{
}
// Token: 0x17000176 RID: 374
// (get) Token: 0x060003A4 RID: 932 RVA: 0x00003510 File Offset: 0x00001710
[Token(Token = "0x17000176")]
internal virtual bool IsText
{
[Token(Token = "0x60003A4")]
[Address(RVA = "0x403930", Offset = "0x402730", VA = "0x180403930", Slot = "45")]
get
{
return default(bool);
}
}
// Token: 0x060003A5 RID: 933 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003A5")]
[Address(RVA = "0x5DE830", Offset = "0x5DD630", VA = "0x1805DE830")]
internal static void NestTextNodes(XmlNode prevNode, XmlNode nextNode)
{
}
// Token: 0x060003A6 RID: 934 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003A6")]
[Address(RVA = "0x5DEE10", Offset = "0x5DDC10", VA = "0x1805DEE10")]
internal static void UnnestTextNodes(XmlNode prevNode, XmlNode nextNode)
{
}
// Token: 0x04000194 RID: 404
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000194")]
internal XmlNode parentNode;
}
}