661 lines
27 KiB
C#
661 lines
27 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Schema;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Represents a reader that provides fast, non-cached forward only access to XML data in an <see cref="T:System.Xml.XmlNode" />.</summary>
|
|
// Token: 0x020000C2 RID: 194
|
|
[Token(Token = "0x20000C2")]
|
|
public class XmlNodeReader : XmlReader, IXmlNamespaceResolver
|
|
{
|
|
/// <summary>Creates an instance of the <see langword="XmlNodeReader" /> class using the specified <see cref="T:System.Xml.XmlNode" />.</summary>
|
|
/// <param name="node">The <see langword="XmlNode" /> you want to read. </param>
|
|
// Token: 0x060009F8 RID: 2552 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60009F8")]
|
|
[Address(RVA = "0x94AB50", Offset = "0x949B50", VA = "0x18094AB50")]
|
|
public XmlNodeReader(XmlNode node)
|
|
{
|
|
}
|
|
|
|
// Token: 0x060009F9 RID: 2553 RVA: 0x00005790 File Offset: 0x00003990
|
|
[Token(Token = "0x60009F9")]
|
|
[Address(RVA = "0x949E20", Offset = "0x948E20", VA = "0x180949E20")]
|
|
internal bool IsInReadingStates()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Gets the type of the current node.</summary>
|
|
/// <returns>One of the <see cref="T:System.Xml.XmlNodeType" /> values representing the type of the current node.</returns>
|
|
// Token: 0x170002CC RID: 716
|
|
// (get) Token: 0x060009FA RID: 2554 RVA: 0x000057A8 File Offset: 0x000039A8
|
|
[Token(Token = "0x170002CC")]
|
|
public override XmlNodeType NodeType
|
|
{
|
|
[Token(Token = "0x60009FA")]
|
|
[Address(RVA = "0x94AE60", Offset = "0x949E60", VA = "0x18094AE60", Slot = "6")]
|
|
get
|
|
{
|
|
return XmlNodeType.None;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the qualified name of the current node.</summary>
|
|
/// <returns>The qualified name of the current node. For example, <see langword="Name" /> is <see langword="bk:book" /> for the element <bk:book>.The name returned is dependent on the <see cref="P:System.Xml.XmlNodeReader.NodeType" /> of the node. The following node types return the listed values. All other node types return an empty string.Node Type Name
|
|
/// <see langword="Attribute" />
|
|
/// The name of the attribute.
|
|
/// <see langword="DocumentType" />
|
|
/// The document type name.
|
|
/// <see langword="Element" />
|
|
/// The tag name.
|
|
/// <see langword="EntityReference" />
|
|
/// The name of the entity referenced.
|
|
/// <see langword="ProcessingInstruction" />
|
|
/// The target of the processing instruction.
|
|
/// <see langword="XmlDeclaration" />
|
|
/// The literal string <see langword="xml" />. </returns>
|
|
// Token: 0x170002CD RID: 717
|
|
// (get) Token: 0x060009FB RID: 2555 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002CD")]
|
|
public override string Name
|
|
{
|
|
[Token(Token = "0x60009FB")]
|
|
[Address(RVA = "0x94ADA0", Offset = "0x949DA0", VA = "0x18094ADA0", Slot = "7")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the local name of the current node.</summary>
|
|
/// <returns>The name of the current node with the prefix removed. For example, <see langword="LocalName" /> is <see langword="book" /> for the element <bk:book>.For node types that do not have a name (like <see langword="Text" />, <see langword="Comment" />, and so on), this property returns String.Empty.</returns>
|
|
// Token: 0x170002CE RID: 718
|
|
// (get) Token: 0x060009FC RID: 2556 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002CE")]
|
|
public override string LocalName
|
|
{
|
|
[Token(Token = "0x60009FC")]
|
|
[Address(RVA = "0x94AD20", Offset = "0x949D20", VA = "0x18094AD20", Slot = "8")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.</summary>
|
|
/// <returns>The namespace URI of the current node; otherwise an empty string.</returns>
|
|
// Token: 0x170002CF RID: 719
|
|
// (get) Token: 0x060009FD RID: 2557 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002CF")]
|
|
public override string NamespaceURI
|
|
{
|
|
[Token(Token = "0x60009FD")]
|
|
[Address(RVA = "0x94AE00", Offset = "0x949E00", VA = "0x18094AE00", Slot = "9")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the namespace prefix associated with the current node.</summary>
|
|
/// <returns>The namespace prefix associated with the current node.</returns>
|
|
// Token: 0x170002D0 RID: 720
|
|
// (get) Token: 0x060009FE RID: 2558 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002D0")]
|
|
public override string Prefix
|
|
{
|
|
[Token(Token = "0x60009FE")]
|
|
[Address(RVA = "0x94AE70", Offset = "0x949E70", VA = "0x18094AE70", Slot = "10")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the text value of the current node.</summary>
|
|
/// <returns>The value returned depends on the <see cref="P:System.Xml.XmlNodeReader.NodeType" /> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node Type Value
|
|
/// <see langword="Attribute" />
|
|
/// The value of the attribute.
|
|
/// <see langword="CDATA" />
|
|
/// The content of the CDATA section.
|
|
/// <see langword="Comment" />
|
|
/// The content of the comment.
|
|
/// <see langword="DocumentType" />
|
|
/// The internal subset.
|
|
/// <see langword="ProcessingInstruction" />
|
|
/// The entire content, excluding the target.
|
|
/// <see langword="SignificantWhitespace" />
|
|
/// The white space between markup in a mixed content model.
|
|
/// <see langword="Text" />
|
|
/// The content of the text node.
|
|
/// <see langword="Whitespace" />
|
|
/// The white space between markup.
|
|
/// <see langword="XmlDeclaration" />
|
|
/// The content of the declaration. </returns>
|
|
// Token: 0x170002D1 RID: 721
|
|
// (get) Token: 0x060009FF RID: 2559 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002D1")]
|
|
public override string Value
|
|
{
|
|
[Token(Token = "0x60009FF")]
|
|
[Address(RVA = "0x94AF00", Offset = "0x949F00", VA = "0x18094AF00", Slot = "11")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the depth of the current node in the XML document.</summary>
|
|
/// <returns>The depth of the current node in the XML document.</returns>
|
|
// Token: 0x170002D2 RID: 722
|
|
// (get) Token: 0x06000A00 RID: 2560 RVA: 0x000057C0 File Offset: 0x000039C0
|
|
[Token(Token = "0x170002D2")]
|
|
public override int Depth
|
|
{
|
|
[Token(Token = "0x6000A00")]
|
|
[Address(RVA = "0x497590", Offset = "0x496590", VA = "0x180497590", Slot = "12")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the base URI of the current node.</summary>
|
|
/// <returns>The base URI of the current node.</returns>
|
|
// Token: 0x170002D3 RID: 723
|
|
// (get) Token: 0x06000A01 RID: 2561 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002D3")]
|
|
public override string BaseURI
|
|
{
|
|
[Token(Token = "0x6000A01")]
|
|
[Address(RVA = "0x94AC60", Offset = "0x949C60", VA = "0x18094AC60", Slot = "13")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether this reader can parse and resolve entities.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the reader can parse and resolve entities; otherwise, <see langword="false" />. <see langword="XmlNodeReader" /> always returns <see langword="true" />.</returns>
|
|
// Token: 0x170002D4 RID: 724
|
|
// (get) Token: 0x06000A02 RID: 2562 RVA: 0x000057D8 File Offset: 0x000039D8
|
|
[Token(Token = "0x170002D4")]
|
|
public override bool CanResolveEntity
|
|
{
|
|
[Token(Token = "0x6000A02")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "38")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the current node is an empty element (for example, <MyElement/>).</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the current node is an element (<see cref="P:System.Xml.XmlNodeReader.NodeType" /> equals <see langword="XmlNodeType.Element" />) and it ends with />; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170002D5 RID: 725
|
|
// (get) Token: 0x06000A03 RID: 2563 RVA: 0x000057F0 File Offset: 0x000039F0
|
|
[Token(Token = "0x170002D5")]
|
|
public override bool IsEmptyElement
|
|
{
|
|
[Token(Token = "0x6000A03")]
|
|
[Address(RVA = "0x94ACF0", Offset = "0x949CF0", VA = "0x18094ACF0", Slot = "14")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the current node is an attribute that was generated from the default value defined in the document type definition (DTD) or schema.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the current node is an attribute whose value was generated from the default value defined in the DTD or schema; <see langword="false" /> if the attribute value was explicitly set.</returns>
|
|
// Token: 0x170002D6 RID: 726
|
|
// (get) Token: 0x06000A04 RID: 2564 RVA: 0x00005808 File Offset: 0x00003A08
|
|
[Token(Token = "0x170002D6")]
|
|
public override bool IsDefault
|
|
{
|
|
[Token(Token = "0x6000A04")]
|
|
[Address(RVA = "0x94ACC0", Offset = "0x949CC0", VA = "0x18094ACC0", Slot = "15")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the current <see langword="xml:space" /> scope.</summary>
|
|
/// <returns>One of the <see cref="T:System.Xml.XmlSpace" /> values. If no <see langword="xml:space" /> scope exists, this property defaults to <see langword="XmlSpace.None" />.</returns>
|
|
// Token: 0x170002D7 RID: 727
|
|
// (get) Token: 0x06000A05 RID: 2565 RVA: 0x00005820 File Offset: 0x00003A20
|
|
[Token(Token = "0x170002D7")]
|
|
public override XmlSpace XmlSpace
|
|
{
|
|
[Token(Token = "0x6000A05")]
|
|
[Address(RVA = "0x94AFC0", Offset = "0x949FC0", VA = "0x18094AFC0", Slot = "17")]
|
|
get
|
|
{
|
|
return XmlSpace.None;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the current <see langword="xml:lang" /> scope.</summary>
|
|
/// <returns>The current <see langword="xml:lang" /> scope.</returns>
|
|
// Token: 0x170002D8 RID: 728
|
|
// (get) Token: 0x06000A06 RID: 2566 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002D8")]
|
|
public override string XmlLang
|
|
{
|
|
[Token(Token = "0x6000A06")]
|
|
[Address(RVA = "0x94AF60", Offset = "0x949F60", VA = "0x18094AF60", Slot = "18")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the schema information that has been assigned to the current node.</summary>
|
|
/// <returns>An <see cref="T:System.Xml.Schema.IXmlSchemaInfo" /> object containing the schema information for the current node.</returns>
|
|
// Token: 0x170002D9 RID: 729
|
|
// (get) Token: 0x06000A07 RID: 2567 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002D9")]
|
|
public override IXmlSchemaInfo SchemaInfo
|
|
{
|
|
[Token(Token = "0x6000A07")]
|
|
[Address(RVA = "0x94AED0", Offset = "0x949ED0", VA = "0x18094AED0", Slot = "19")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the number of attributes on the current node.</summary>
|
|
/// <returns>The number of attributes on the current node. This number includes default attributes.</returns>
|
|
// Token: 0x170002DA RID: 730
|
|
// (get) Token: 0x06000A08 RID: 2568 RVA: 0x00005838 File Offset: 0x00003A38
|
|
[Token(Token = "0x170002DA")]
|
|
public override int AttributeCount
|
|
{
|
|
[Token(Token = "0x6000A08")]
|
|
[Address(RVA = "0x94AC20", Offset = "0x949C20", VA = "0x18094AC20", Slot = "21")]
|
|
get
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the value of the attribute with the specified name.</summary>
|
|
/// <param name="name">The qualified name of the attribute. </param>
|
|
/// <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
|
|
// Token: 0x06000A09 RID: 2569 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A09")]
|
|
[Address(RVA = "0x949CD0", Offset = "0x948CD0", VA = "0x180949CD0", Slot = "22")]
|
|
public override string GetAttribute(string name)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the value of the attribute with the specified local name and namespace URI.</summary>
|
|
/// <param name="name">The local name of the attribute. </param>
|
|
/// <param name="namespaceURI">The namespace URI of the attribute. </param>
|
|
/// <returns>The value of the specified attribute. If the attribute is not found, <see langword="null" /> is returned.</returns>
|
|
// Token: 0x06000A0A RID: 2570 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A0A")]
|
|
[Address(RVA = "0x949D00", Offset = "0x948D00", VA = "0x180949D00", Slot = "23")]
|
|
public override string GetAttribute(string name, string namespaceURI)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets the value of the attribute with the specified index.</summary>
|
|
/// <param name="attributeIndex">The index of the attribute. The index is zero-based. (The first attribute has index 0.) </param>
|
|
/// <returns>The value of the specified attribute.</returns>
|
|
/// <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlNodeReader.AttributeCount" />. </exception>
|
|
// Token: 0x06000A0B RID: 2571 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A0B")]
|
|
[Address(RVA = "0x949D90", Offset = "0x948D90", VA = "0x180949D90", Slot = "24")]
|
|
public override string GetAttribute(int attributeIndex)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Moves to the attribute with the specified name.</summary>
|
|
/// <param name="name">The qualified name of the attribute. </param>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the attribute is found; otherwise, <see langword="false" />. If <see langword="false" />, the reader's position does not change.</returns>
|
|
// Token: 0x06000A0C RID: 2572 RVA: 0x00005850 File Offset: 0x00003A50
|
|
[Token(Token = "0x6000A0C")]
|
|
[Address(RVA = "0x94A020", Offset = "0x949020", VA = "0x18094A020", Slot = "25")]
|
|
public override bool MoveToAttribute(string name)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Moves to the attribute with the specified index.</summary>
|
|
/// <param name="attributeIndex">The index of the attribute. </param>
|
|
/// <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="i" /> parameter is less than 0 or greater than or equal to <see cref="P:System.Xml.XmlReader.AttributeCount" />. </exception>
|
|
// Token: 0x06000A0D RID: 2573 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A0D")]
|
|
[Address(RVA = "0x949E70", Offset = "0x948E70", VA = "0x180949E70", Slot = "26")]
|
|
public override void MoveToAttribute(int attributeIndex)
|
|
{
|
|
}
|
|
|
|
/// <summary>Moves to the first attribute.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if an attribute exists (the reader moves to the first attribute); otherwise, <see langword="false" /> (the position of the reader does not change).</returns>
|
|
// Token: 0x06000A0E RID: 2574 RVA: 0x00005868 File Offset: 0x00003A68
|
|
[Token(Token = "0x6000A0E")]
|
|
[Address(RVA = "0x94A1C0", Offset = "0x9491C0", VA = "0x18094A1C0", Slot = "27")]
|
|
public override bool MoveToFirstAttribute()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Moves to the next attribute.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if there is a next attribute; <see langword="false" /> if there are no more attributes.</returns>
|
|
// Token: 0x06000A0F RID: 2575 RVA: 0x00005880 File Offset: 0x00003A80
|
|
[Token(Token = "0x6000A0F")]
|
|
[Address(RVA = "0x94A2A0", Offset = "0x9492A0", VA = "0x18094A2A0", Slot = "28")]
|
|
public override bool MoveToNextAttribute()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Moves to the element that contains the current attribute node.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); <see langword="false" /> if the reader is not positioned on an attribute (the position of the reader does not change).</returns>
|
|
// Token: 0x06000A10 RID: 2576 RVA: 0x00005898 File Offset: 0x00003A98
|
|
[Token(Token = "0x6000A10")]
|
|
[Address(RVA = "0x94A0F0", Offset = "0x9490F0", VA = "0x18094A0F0", Slot = "29")]
|
|
public override bool MoveToElement()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <summary>Reads the next node from the stream.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the next node was read successfully; <see langword="false" /> if there are no more nodes to read.</returns>
|
|
// Token: 0x06000A11 RID: 2577 RVA: 0x000058B0 File Offset: 0x00003AB0
|
|
[Token(Token = "0x6000A11")]
|
|
[Address(RVA = "0x94A860", Offset = "0x949860", VA = "0x18094A860", Slot = "31")]
|
|
public override bool Read()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000A12 RID: 2578 RVA: 0x000058C8 File Offset: 0x00003AC8
|
|
[Token(Token = "0x6000A12")]
|
|
[Address(RVA = "0x94A870", Offset = "0x949870", VA = "0x18094A870")]
|
|
private bool Read(bool fSkipChildren)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000A13 RID: 2579 RVA: 0x000058E0 File Offset: 0x00003AE0
|
|
[Token(Token = "0x6000A13")]
|
|
[Address(RVA = "0x94A5A0", Offset = "0x9495A0", VA = "0x18094A5A0")]
|
|
private bool ReadNextNode(bool fSkipChildren)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000A14 RID: 2580 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A14")]
|
|
[Address(RVA = "0x94AA70", Offset = "0x949A70", VA = "0x18094AA70")]
|
|
private void SetEndOfFile()
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000A15 RID: 2581 RVA: 0x000058F8 File Offset: 0x00003AF8
|
|
[Token(Token = "0x6000A15")]
|
|
[Address(RVA = "0x94A3B0", Offset = "0x9493B0", VA = "0x18094A3B0")]
|
|
private bool ReadAtZeroLevel(bool fSkipChildren)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000A16 RID: 2582 RVA: 0x00005910 File Offset: 0x00003B10
|
|
[Token(Token = "0x6000A16")]
|
|
[Address(RVA = "0x94A470", Offset = "0x949470", VA = "0x18094A470")]
|
|
private bool ReadForward(bool fSkipChildren)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000A17 RID: 2583 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A17")]
|
|
[Address(RVA = "0x94A380", Offset = "0x949380", VA = "0x18094A380")]
|
|
private void ReSetReadingMarks()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the reader is positioned at the end of the stream.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the reader is positioned at the end of the stream; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170002DB RID: 731
|
|
// (get) Token: 0x06000A18 RID: 2584 RVA: 0x00005928 File Offset: 0x00003B28
|
|
[Token(Token = "0x170002DB")]
|
|
public override bool EOF
|
|
{
|
|
[Token(Token = "0x6000A18")]
|
|
[Address(RVA = "0x94ACB0", Offset = "0x949CB0", VA = "0x18094ACB0", Slot = "32")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Changes the <see cref="P:System.Xml.XmlNodeReader.ReadState" /> to <see langword="Closed" />.</summary>
|
|
// Token: 0x06000A19 RID: 2585 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A19")]
|
|
[Address(RVA = "0x949C90", Offset = "0x948C90", VA = "0x180949C90", Slot = "33")]
|
|
public override void Close()
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the state of the reader.</summary>
|
|
/// <returns>One of the <see cref="T:System.Xml.ReadState" /> values.</returns>
|
|
// Token: 0x170002DC RID: 732
|
|
// (get) Token: 0x06000A1A RID: 2586 RVA: 0x00005940 File Offset: 0x00003B40
|
|
[Token(Token = "0x170002DC")]
|
|
public override ReadState ReadState
|
|
{
|
|
[Token(Token = "0x6000A1A")]
|
|
[Address(RVA = "0x470B70", Offset = "0x46FB70", VA = "0x180470B70", Slot = "34")]
|
|
get
|
|
{
|
|
return ReadState.Initial;
|
|
}
|
|
}
|
|
|
|
/// <summary>Skips the children of the current node.</summary>
|
|
// Token: 0x06000A1B RID: 2587 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A1B")]
|
|
[Address(RVA = "0x94AA90", Offset = "0x949A90", VA = "0x18094AA90", Slot = "35")]
|
|
public override void Skip()
|
|
{
|
|
}
|
|
|
|
/// <summary>Reads the contents of an element or text node as a string.</summary>
|
|
/// <returns>The contents of the element or text-like node (This can include CDATA, Text nodes, and so on). This can be an empty string if the reader is positioned on something other than an element or text node, or if there is no more text content to return in the current context.
|
|
/// <see langword="Note:" /> The text node can be either an element or an attribute text node.</returns>
|
|
// Token: 0x06000A1C RID: 2588 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A1C")]
|
|
[Address(RVA = "0x94A7B0", Offset = "0x9497B0", VA = "0x18094A7B0", Slot = "42")]
|
|
public override string ReadString()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the current node has any attributes.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the current node has attributes; otherwise, <see langword="false" />.</returns>
|
|
// Token: 0x170002DD RID: 733
|
|
// (get) Token: 0x06000A1D RID: 2589 RVA: 0x00005958 File Offset: 0x00003B58
|
|
[Token(Token = "0x170002DD")]
|
|
public override bool HasAttributes
|
|
{
|
|
[Token(Token = "0x6000A1D")]
|
|
[Address(RVA = "0x4B7760", Offset = "0x4B6760", VA = "0x1804B7760", Slot = "49")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the <see cref="T:System.Xml.XmlNameTable" /> associated with this implementation.</summary>
|
|
/// <returns>The <see langword="XmlNameTable" /> enabling you to get the atomized version of a string within the node.</returns>
|
|
// Token: 0x170002DE RID: 734
|
|
// (get) Token: 0x06000A1E RID: 2590 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002DE")]
|
|
public override XmlNameTable NameTable
|
|
{
|
|
[Token(Token = "0x6000A1E")]
|
|
[Address(RVA = "0x94AD80", Offset = "0x949D80", VA = "0x18094AD80", Slot = "36")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Resolves a namespace prefix in the current element's scope.</summary>
|
|
/// <param name="prefix">The prefix whose namespace URI you want to resolve. To match the default namespace, pass an empty string. This string does not have to be atomized. </param>
|
|
/// <returns>The namespace URI to which the prefix maps or <see langword="null" /> if no matching prefix is found.</returns>
|
|
// Token: 0x06000A1F RID: 2591 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A1F")]
|
|
[Address(RVA = "0x949E30", Offset = "0x948E30", VA = "0x180949E30", Slot = "37")]
|
|
public override string LookupNamespace(string prefix)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Resolves the entity reference for <see langword="EntityReference" /> nodes.</summary>
|
|
/// <exception cref="T:System.InvalidOperationException">The reader is not positioned on an <see langword="EntityReference" /> node. </exception>
|
|
// Token: 0x06000A20 RID: 2592 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A20")]
|
|
[Address(RVA = "0x94A9E0", Offset = "0x9499E0", VA = "0x18094A9E0", Slot = "39")]
|
|
public override void ResolveEntity()
|
|
{
|
|
}
|
|
|
|
/// <summary>Parses the attribute value into one or more <see langword="Text" />, <see langword="EntityReference" />, or <see langword="EndEntity" /> nodes.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if there are nodes to return.
|
|
/// <see langword="false" /> if the reader is not positioned on an attribute node when the initial call is made or if all the attribute values have been read.An empty attribute, such as, misc="", returns <see langword="true" /> with a single node with a value of String.Empty.</returns>
|
|
// Token: 0x06000A21 RID: 2593 RVA: 0x00005970 File Offset: 0x00003B70
|
|
[Token(Token = "0x6000A21")]
|
|
[Address(RVA = "0x94A420", Offset = "0x949420", VA = "0x18094A420", Slot = "30")]
|
|
public override bool ReadAttributeValue()
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000A22 RID: 2594 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000A22")]
|
|
[Address(RVA = "0x949CA0", Offset = "0x948CA0", VA = "0x180949CA0")]
|
|
private void FinishReadBinary()
|
|
{
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.GetNamespacesInScope(System.Xml.XmlNamespaceScope)" />.</summary>
|
|
/// <param name="scope">
|
|
/// <see cref="T:System.Xml.XmlNamespaceScope" /> object.</param>
|
|
/// <returns>
|
|
/// <see cref="T:System.Collections.IDictionary" /> object that contains the namespaces that are in scope.</returns>
|
|
// Token: 0x06000A23 RID: 2595 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A23")]
|
|
[Address(RVA = "0x94AAA0", Offset = "0x949AA0", VA = "0x18094AAA0", Slot = "53")]
|
|
IDictionary<string, string> IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupPrefix(System.String)" />.</summary>
|
|
/// <param name="namespaceName">
|
|
/// <see cref="T:System.String" /> object that identifies the namespace.</param>
|
|
/// <returns>
|
|
/// <see cref="T:System.String" /> object that contains the namespace prefix.</returns>
|
|
// Token: 0x06000A24 RID: 2596 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A24")]
|
|
[Address(RVA = "0x94AB30", Offset = "0x949B30", VA = "0x18094AB30", Slot = "55")]
|
|
string IXmlNamespaceResolver.LookupPrefix(string namespaceName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>For a description of this member, see <see cref="M:System.Xml.IXmlNamespaceResolver.LookupNamespace(System.String)" />.</summary>
|
|
/// <param name="prefix">
|
|
/// <see cref="T:System.String" /> that contains the namespace prefix.</param>
|
|
/// <returns>
|
|
/// <see cref="T:System.String" /> that contains the namespace name.</returns>
|
|
// Token: 0x06000A25 RID: 2597 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A25")]
|
|
[Address(RVA = "0x94AAC0", Offset = "0x949AC0", VA = "0x18094AAC0", Slot = "54")]
|
|
string IXmlNamespaceResolver.LookupNamespace(string prefix)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x170002DF RID: 735
|
|
// (get) Token: 0x06000A26 RID: 2598 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170002DF")]
|
|
internal override IDtdInfo DtdInfo
|
|
{
|
|
[Token(Token = "0x6000A26")]
|
|
[Address(RVA = "0x94AC80", Offset = "0x949C80", VA = "0x18094AC80", Slot = "52")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x04000553 RID: 1363
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4000553")]
|
|
private XmlNodeReaderNavigator readerNav;
|
|
|
|
// Token: 0x04000554 RID: 1364
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000554")]
|
|
private XmlNodeType nodeType;
|
|
|
|
// Token: 0x04000555 RID: 1365
|
|
[FieldOffset(Offset = "0x1C")]
|
|
[Token(Token = "0x4000555")]
|
|
private int curDepth;
|
|
|
|
// Token: 0x04000556 RID: 1366
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x4000556")]
|
|
private ReadState readState;
|
|
|
|
// Token: 0x04000557 RID: 1367
|
|
[FieldOffset(Offset = "0x24")]
|
|
[Token(Token = "0x4000557")]
|
|
private bool fEOF;
|
|
|
|
// Token: 0x04000558 RID: 1368
|
|
[FieldOffset(Offset = "0x25")]
|
|
[Token(Token = "0x4000558")]
|
|
private bool bResolveEntity;
|
|
|
|
// Token: 0x04000559 RID: 1369
|
|
[FieldOffset(Offset = "0x26")]
|
|
[Token(Token = "0x4000559")]
|
|
private bool bStartFromDocument;
|
|
|
|
// Token: 0x0400055A RID: 1370
|
|
[FieldOffset(Offset = "0x27")]
|
|
[Token(Token = "0x400055A")]
|
|
private bool bInReadBinary;
|
|
|
|
// Token: 0x0400055B RID: 1371
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x400055B")]
|
|
private ReadContentAsBinaryHelper readBinaryHelper;
|
|
}
|
|
}
|