using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents a reader that provides fast, non-cached, forward-only access to XML data.Starting with the .NET Framework 2.0, we recommend that you use the class instead.
// Token: 0x0200006D RID: 109
[Token(Token = "0x200006D")]
[EditorBrowsable(EditorBrowsableState.Never)]
public class XmlTextReader : XmlReader, IXmlLineInfo, IXmlNamespaceResolver
{
/// Initializes a new instance of the class with the specified stream.
/// The stream containing the XML data to read.
///
/// is .
// Token: 0x0600044D RID: 1101 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600044D")]
[Address(RVA = "0x4DAD30", Offset = "0x4D9D30", VA = "0x1804DAD30")]
public XmlTextReader(Stream input)
{
}
/// Initializes a new instance of the class with the specified URL, stream and .
/// The URL to use for resolving external resources. The is set to this value. If is , is set to .
/// The stream containing the XML data to read.
/// The to use.
/// The or value is .
// Token: 0x0600044E RID: 1102 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600044E")]
[Address(RVA = "0x4DAB80", Offset = "0x4D9B80", VA = "0x1804DAB80")]
public XmlTextReader(string url, Stream input, XmlNameTable nt)
{
}
/// Initializes a new instance of the class with the specified .
/// The containing the XML data to read.
// Token: 0x0600044F RID: 1103 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600044F")]
[Address(RVA = "0x4DAA70", Offset = "0x4D9A70", VA = "0x1804DAA70")]
public XmlTextReader(TextReader input)
{
}
/// Initializes a new instance of the class with the specified and .
/// The containing the XML data to read.
/// The to use.
/// The value is .
// Token: 0x06000450 RID: 1104 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000450")]
[Address(RVA = "0x4DAC50", Offset = "0x4D9C50", VA = "0x1804DAC50")]
public XmlTextReader(TextReader input, XmlNameTable nt)
{
}
/// Gets the type of the current node.
/// One of the values representing the type of the current node.
// Token: 0x17000108 RID: 264
// (get) Token: 0x06000451 RID: 1105 RVA: 0x00003768 File Offset: 0x00001968
[Token(Token = "0x17000108")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000451")]
[Address(RVA = "0x4786D0", Offset = "0x4776D0", VA = "0x1804786D0", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// Gets the qualified name of the current node.
/// The qualified name of the current node. For example, is for the element <bk:book>.The name returned is dependent on the of the node. The following node types return the listed values. All other node types return an empty string.Node Type Name
///
/// The name of the attribute.
///
/// The document type name.
///
/// The tag name.
///
/// The name of the entity referenced.
///
/// The target of the processing instruction.
///
/// The literal string .
// Token: 0x17000109 RID: 265
// (get) Token: 0x06000452 RID: 1106 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000109")]
public override string Name
{
[Token(Token = "0x6000452")]
[Address(RVA = "0x4DB020", Offset = "0x4DA020", VA = "0x1804DB020", Slot = "7")]
get
{
return null;
}
}
/// Gets the local name of the current node.
/// The name of the current node with the prefix removed. For example, is for the element <bk:book>.For node types that do not have a name (like , , and so on), this property returns .
// Token: 0x1700010A RID: 266
// (get) Token: 0x06000453 RID: 1107 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010A")]
public override string LocalName
{
[Token(Token = "0x6000453")]
[Address(RVA = "0x4DAFC0", Offset = "0x4D9FC0", VA = "0x1804DAFC0", Slot = "8")]
get
{
return null;
}
}
/// Gets the namespace URI (as defined in the W3C Namespace specification) of the node on which the reader is positioned.
/// The namespace URI of the current node; otherwise an empty string.
// Token: 0x1700010B RID: 267
// (get) Token: 0x06000454 RID: 1108 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010B")]
public override string NamespaceURI
{
[Token(Token = "0x6000454")]
[Address(RVA = "0x4DB080", Offset = "0x4DA080", VA = "0x1804DB080", Slot = "9")]
get
{
return null;
}
}
/// Gets the namespace prefix associated with the current node.
/// The namespace prefix associated with the current node.
// Token: 0x1700010C RID: 268
// (get) Token: 0x06000455 RID: 1109 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010C")]
public override string Prefix
{
[Token(Token = "0x6000455")]
[Address(RVA = "0x4DB0F0", Offset = "0x4DA0F0", VA = "0x1804DB0F0", Slot = "10")]
get
{
return null;
}
}
/// Gets the text value of the current node.
/// The value returned depends on the of the node. The following table lists node types that have a value to return. All other node types return .Node Type Value
///
/// The value of the attribute.
///
/// The content of the CDATA section.
///
/// The content of the comment.
///
/// The internal subset.
///
/// The entire content, excluding the target.
///
/// The white space within an = 'preserve' scope.
///
/// The content of the text node.
///
/// The white space between markup.
///
/// The content of the declaration.
// Token: 0x1700010D RID: 269
// (get) Token: 0x06000456 RID: 1110 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010D")]
public override string Value
{
[Token(Token = "0x6000456")]
[Address(RVA = "0x4DB150", Offset = "0x4DA150", VA = "0x1804DB150", Slot = "11")]
get
{
return null;
}
}
/// Gets the depth of the current node in the XML document.
/// The depth of the current node in the XML document.
// Token: 0x1700010E RID: 270
// (get) Token: 0x06000457 RID: 1111 RVA: 0x00003780 File Offset: 0x00001980
[Token(Token = "0x1700010E")]
public override int Depth
{
[Token(Token = "0x6000457")]
[Address(RVA = "0x4DAE70", Offset = "0x4D9E70", VA = "0x1804DAE70", Slot = "12")]
get
{
return 0;
}
}
/// Gets the base URI of the current node.
/// The base URI of the current node.
// Token: 0x1700010F RID: 271
// (get) Token: 0x06000458 RID: 1112 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700010F")]
public override string BaseURI
{
[Token(Token = "0x6000458")]
[Address(RVA = "0x4DAE40", Offset = "0x4D9E40", VA = "0x1804DAE40", Slot = "13")]
get
{
return null;
}
}
/// Gets a value indicating whether the current node is an empty element (for example, <MyElement/>).
///
/// if the current node is an element ( equals ) that ends with />; otherwise, .
// Token: 0x17000110 RID: 272
// (get) Token: 0x06000459 RID: 1113 RVA: 0x00003798 File Offset: 0x00001998
[Token(Token = "0x17000110")]
public override bool IsEmptyElement
{
[Token(Token = "0x6000459")]
[Address(RVA = "0x4DAF30", Offset = "0x4D9F30", VA = "0x1804DAF30", Slot = "14")]
get
{
return default(bool);
}
}
/// Gets a value indicating whether the current node is an attribute that was generated from the default value defined in the DTD or schema.
/// This property always returns . ( does not expand default attributes.)
// Token: 0x17000111 RID: 273
// (get) Token: 0x0600045A RID: 1114 RVA: 0x000037B0 File Offset: 0x000019B0
[Token(Token = "0x17000111")]
public override bool IsDefault
{
[Token(Token = "0x600045A")]
[Address(RVA = "0x4DAF00", Offset = "0x4D9F00", VA = "0x1804DAF00", Slot = "15")]
get
{
return default(bool);
}
}
/// Gets the quotation mark character used to enclose the value of an attribute node.
/// The quotation mark character (" or ') used to enclose the value of an attribute node.
// Token: 0x17000112 RID: 274
// (get) Token: 0x0600045B RID: 1115 RVA: 0x000037C8 File Offset: 0x000019C8
[Token(Token = "0x17000112")]
public override char QuoteChar
{
[Token(Token = "0x600045B")]
[Address(RVA = "0x4DB120", Offset = "0x4DA120", VA = "0x1804DB120", Slot = "16")]
get
{
return '\0';
}
}
/// Gets the current scope.
/// One of the values. If no scope exists, this property defaults to .
// Token: 0x17000113 RID: 275
// (get) Token: 0x0600045C RID: 1116 RVA: 0x000037E0 File Offset: 0x000019E0
[Token(Token = "0x17000113")]
public override XmlSpace XmlSpace
{
[Token(Token = "0x600045C")]
[Address(RVA = "0x493A40", Offset = "0x492A40", VA = "0x180493A40", Slot = "17")]
get
{
return XmlSpace.None;
}
}
/// Gets the current scope.
/// The current scope.
// Token: 0x17000114 RID: 276
// (get) Token: 0x0600045D RID: 1117 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000114")]
public override string XmlLang
{
[Token(Token = "0x600045D")]
[Address(RVA = "0x493A70", Offset = "0x492A70", VA = "0x180493A70", Slot = "18")]
get
{
return null;
}
}
/// Gets the number of attributes on the current node.
/// The number of attributes on the current node.
// Token: 0x17000115 RID: 277
// (get) Token: 0x0600045E RID: 1118 RVA: 0x000037F8 File Offset: 0x000019F8
[Token(Token = "0x17000115")]
public override int AttributeCount
{
[Token(Token = "0x600045E")]
[Address(RVA = "0x493A10", Offset = "0x492A10", VA = "0x180493A10", Slot = "21")]
get
{
return 0;
}
}
/// Gets the value of the attribute with the specified name.
/// The qualified name of the attribute.
/// The value of the specified attribute. If the attribute is not found, is returned.
// Token: 0x0600045F RID: 1119 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600045F")]
[Address(RVA = "0x4DA710", Offset = "0x4D9710", VA = "0x1804DA710", Slot = "22")]
public override string GetAttribute(string name)
{
return null;
}
/// Gets the value of the attribute with the specified local name and namespace URI.
/// The local name of the attribute.
/// The namespace URI of the attribute.
/// The value of the specified attribute. If the attribute is not found, is returned. This method does not move the reader.
// Token: 0x06000460 RID: 1120 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000460")]
[Address(RVA = "0x4DA740", Offset = "0x4D9740", VA = "0x1804DA740", Slot = "23")]
public override string GetAttribute(string localName, string namespaceURI)
{
return null;
}
/// Gets the value of the attribute with the specified index.
/// The index of the attribute. The index is zero-based. (The first attribute has index 0.)
/// The value of the specified attribute.
/// The parameter is less than 0 or greater than or equal to .
// Token: 0x06000461 RID: 1121 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000461")]
[Address(RVA = "0x4DA770", Offset = "0x4D9770", VA = "0x1804DA770", Slot = "24")]
public override string GetAttribute(int i)
{
return null;
}
/// Moves to the attribute with the specified name.
/// The qualified name of the attribute.
///
/// if the attribute is found; otherwise, . If , the reader's position does not change.
// Token: 0x06000462 RID: 1122 RVA: 0x00003810 File Offset: 0x00001A10
[Token(Token = "0x6000462")]
[Address(RVA = "0x4DA810", Offset = "0x4D9810", VA = "0x1804DA810", Slot = "25")]
public override bool MoveToAttribute(string name)
{
return default(bool);
}
/// Moves to the attribute with the specified index.
/// The index of the attribute.
/// The parameter is less than 0 or greater than or equal to .
// Token: 0x06000463 RID: 1123 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000463")]
[Address(RVA = "0x4DA7E0", Offset = "0x4D97E0", VA = "0x1804DA7E0", Slot = "26")]
public override void MoveToAttribute(int i)
{
}
/// Moves to the first attribute.
///
/// if an attribute exists (the reader moves to the first attribute); otherwise, (the position of the reader does not change).
// Token: 0x06000464 RID: 1124 RVA: 0x00003828 File Offset: 0x00001A28
[Token(Token = "0x6000464")]
[Address(RVA = "0x4DA870", Offset = "0x4D9870", VA = "0x1804DA870", Slot = "27")]
public override bool MoveToFirstAttribute()
{
return default(bool);
}
/// Moves to the next attribute.
///
/// if there is a next attribute; if there are no more attributes.
// Token: 0x06000465 RID: 1125 RVA: 0x00003840 File Offset: 0x00001A40
[Token(Token = "0x6000465")]
[Address(RVA = "0x4DA8A0", Offset = "0x4D98A0", VA = "0x1804DA8A0", Slot = "28")]
public override bool MoveToNextAttribute()
{
return default(bool);
}
/// Moves to the element that contains the current attribute node.
///
/// if the reader is positioned on an attribute (the reader moves to the element that owns the attribute); if the reader is not positioned on an attribute (the position of the reader does not change).
// Token: 0x06000466 RID: 1126 RVA: 0x00003858 File Offset: 0x00001A58
[Token(Token = "0x6000466")]
[Address(RVA = "0x4DA840", Offset = "0x4D9840", VA = "0x1804DA840", Slot = "29")]
public override bool MoveToElement()
{
return default(bool);
}
/// Parses the attribute value into one or more , , or nodes.
///
/// if there are nodes to return.
/// 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 with a single node with a value of .
// Token: 0x06000467 RID: 1127 RVA: 0x00003870 File Offset: 0x00001A70
[Token(Token = "0x6000467")]
[Address(RVA = "0x4DA8D0", Offset = "0x4D98D0", VA = "0x1804DA8D0", Slot = "30")]
public override bool ReadAttributeValue()
{
return default(bool);
}
/// Reads the next node from the stream.
///
/// if the next node was read successfully; if there are no more nodes to read.
/// An error occurred while parsing the XML.
// Token: 0x06000468 RID: 1128 RVA: 0x00003888 File Offset: 0x00001A88
[Token(Token = "0x6000468")]
[Address(RVA = "0x4DA930", Offset = "0x4D9930", VA = "0x1804DA930", Slot = "31")]
public override bool Read()
{
return default(bool);
}
/// Gets a value indicating whether the reader is positioned at the end of the stream.
///
/// if the reader is positioned at the end of the stream; otherwise, .
// Token: 0x17000116 RID: 278
// (get) Token: 0x06000469 RID: 1129 RVA: 0x000038A0 File Offset: 0x00001AA0
[Token(Token = "0x17000116")]
public override bool EOF
{
[Token(Token = "0x6000469")]
[Address(RVA = "0x4DAED0", Offset = "0x4D9ED0", VA = "0x1804DAED0", Slot = "32")]
get
{
return default(bool);
}
}
/// Changes the to .
// Token: 0x0600046A RID: 1130 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600046A")]
[Address(RVA = "0x4B2620", Offset = "0x4B1620", VA = "0x1804B2620", Slot = "33")]
public override void Close()
{
}
/// Gets the state of the reader.
/// One of the values.
// Token: 0x17000117 RID: 279
// (get) Token: 0x0600046B RID: 1131 RVA: 0x000038B8 File Offset: 0x00001AB8
[Token(Token = "0x17000117")]
public override ReadState ReadState
{
[Token(Token = "0x600046B")]
[Address(RVA = "0x4B2690", Offset = "0x4B1690", VA = "0x1804B2690", Slot = "34")]
get
{
return ReadState.Initial;
}
}
/// Skips the children of the current node.
// Token: 0x0600046C RID: 1132 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600046C")]
[Address(RVA = "0x4DA990", Offset = "0x4D9990", VA = "0x1804DA990", Slot = "35")]
public override void Skip()
{
}
/// Gets the associated with this implementation.
/// The enabling you to get the atomized version of a string within the node.
// Token: 0x17000118 RID: 280
// (get) Token: 0x0600046D RID: 1133 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000118")]
public override XmlNameTable NameTable
{
[Token(Token = "0x600046D")]
[Address(RVA = "0x4DAFF0", Offset = "0x4D9FF0", VA = "0x1804DAFF0", Slot = "36")]
get
{
return null;
}
}
/// Resolves a namespace prefix in the current element's scope.
/// 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.
/// The namespace URI to which the prefix maps or if no matching prefix is found.
/// The property is set to and the value is .
// Token: 0x0600046E RID: 1134 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600046E")]
[Address(RVA = "0x4DA7A0", Offset = "0x4D97A0", VA = "0x1804DA7A0", Slot = "37")]
public override string LookupNamespace(string prefix)
{
return null;
}
/// Gets a value indicating whether this reader can parse and resolve entities.
///
/// if the reader can parse and resolve entities; otherwise, . The class always returns .
// Token: 0x17000119 RID: 281
// (get) Token: 0x0600046F RID: 1135 RVA: 0x000038D0 File Offset: 0x00001AD0
[Token(Token = "0x17000119")]
public override bool CanResolveEntity
{
[Token(Token = "0x600046F")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "38")]
get
{
return default(bool);
}
}
/// Resolves the entity reference for nodes.
// Token: 0x06000470 RID: 1136 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000470")]
[Address(RVA = "0x4DA960", Offset = "0x4D9960", VA = "0x1804DA960", Slot = "39")]
public override void ResolveEntity()
{
}
/// Gets a value indicating whether the implements the method.
///
/// if the implements the method; otherwise . The class always returns .
// Token: 0x1700011A RID: 282
// (get) Token: 0x06000471 RID: 1137 RVA: 0x000038E8 File Offset: 0x00001AE8
[Token(Token = "0x1700011A")]
public override bool CanReadValueChunk
{
[Token(Token = "0x6000471")]
[Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "40")]
get
{
return default(bool);
}
}
/// Reads the contents of an element or a text node as a string.
/// The contents of the element or text node. 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.
/// The text node can be either an element or an attribute text node.
/// An error occurred while parsing the XML.
/// An invalid operation was attempted.
// Token: 0x06000472 RID: 1138 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000472")]
[Address(RVA = "0x4DA900", Offset = "0x4D9900", VA = "0x1804DA900", Slot = "42")]
public override string ReadString()
{
return null;
}
/// Gets the current line number.
/// The current line number.
// Token: 0x1700011B RID: 283
// (get) Token: 0x06000473 RID: 1139 RVA: 0x00003900 File Offset: 0x00001B00
[Token(Token = "0x1700011B")]
public int LineNumber
{
[Token(Token = "0x6000473")]
[Address(RVA = "0x4DAF60", Offset = "0x4D9F60", VA = "0x1804DAF60", Slot = "53")]
get
{
return 0;
}
}
/// Gets the current line position.
/// The current line position.
// Token: 0x1700011C RID: 284
// (get) Token: 0x06000474 RID: 1140 RVA: 0x00003918 File Offset: 0x00001B18
[Token(Token = "0x1700011C")]
public int LinePosition
{
[Token(Token = "0x6000474")]
[Address(RVA = "0x4DAF90", Offset = "0x4D9F90", VA = "0x1804DAF90", Slot = "54")]
get
{
return 0;
}
}
/// For a description of this member, see .
/// An value that specifies the type of namespace nodes to return.
/// An that contains the current in-scope namespaces.
// Token: 0x06000475 RID: 1141 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000475")]
[Address(RVA = "0x4DA9C0", Offset = "0x4D99C0", VA = "0x1804DA9C0", Slot = "55")]
IDictionary IXmlNamespaceResolver.GetNamespacesInScope(XmlNamespaceScope scope)
{
return null;
}
/// For a description of this member, see .
/// The prefix whose namespace URI you wish to find.
/// The namespace URI that is mapped to the prefix; if the prefix is not mapped to a namespace URI.
// Token: 0x06000476 RID: 1142 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000476")]
[Address(RVA = "0x4DAA00", Offset = "0x4D9A00", VA = "0x1804DAA00", Slot = "56")]
string IXmlNamespaceResolver.LookupNamespace(string prefix)
{
return null;
}
/// For a description of this member, see .
/// The namespace URI whose prefix you wish to find.
/// The prefix that is mapped to the namespace URI; if the namespace URI is not mapped to a prefix.
// Token: 0x06000477 RID: 1143 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000477")]
[Address(RVA = "0x4DAA30", Offset = "0x4D9A30", VA = "0x1804DAA30", Slot = "57")]
string IXmlNamespaceResolver.LookupPrefix(string namespaceName)
{
return null;
}
/// Gets or sets a value indicating whether to do namespace support.
///
/// to do namespace support; otherwise, . The default is .
/// Setting this property after a read operation has occurred ( is not ).
// Token: 0x1700011D RID: 285
// (get) Token: 0x06000478 RID: 1144 RVA: 0x00003930 File Offset: 0x00001B30
[Token(Token = "0x1700011D")]
public bool Namespaces
{
[Token(Token = "0x6000478")]
[Address(RVA = "0x4DB0B0", Offset = "0x4DA0B0", VA = "0x1804DB0B0")]
get
{
return default(bool);
}
}
/// Gets or sets a value indicating whether to normalize white space and attribute values.
///
/// to normalize; otherwise, . The default is .
/// Setting this property when the reader is closed ( is ).
// Token: 0x1700011E RID: 286
// (get) Token: 0x06000479 RID: 1145 RVA: 0x00003948 File Offset: 0x00001B48
// (set) Token: 0x0600047A RID: 1146 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700011E")]
public bool Normalization
{
[Token(Token = "0x6000479")]
[Address(RVA = "0x4DB0D0", Offset = "0x4DA0D0", VA = "0x1804DB0D0")]
get
{
return default(bool);
}
[Token(Token = "0x600047A")]
[Address(RVA = "0x4DB220", Offset = "0x4DA220", VA = "0x1804DB220")]
set
{
}
}
/// Gets or sets a value that specifies how white space is handled.
/// One of the values. The default is (returns and nodes).
/// Invalid value specified.
/// Setting this property when the reader is closed ( is ).
// Token: 0x1700011F RID: 287
// (set) Token: 0x0600047B RID: 1147 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700011F")]
public WhitespaceHandling WhitespaceHandling
{
[Token(Token = "0x600047B")]
[Address(RVA = "0x4DB2E0", Offset = "0x4DA2E0", VA = "0x1804DB2E0")]
set
{
}
}
/// Gets or sets a value that specifies how the reader handles entities.
/// One of the values. If no is specified, it defaults to .
// Token: 0x17000120 RID: 288
// (set) Token: 0x0600047C RID: 1148 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000120")]
public EntityHandling EntityHandling
{
[Token(Token = "0x600047C")]
[Address(RVA = "0x4DB180", Offset = "0x4DA180", VA = "0x1804DB180")]
set
{
}
}
/// Sets the used for resolving DTD references.
/// The to use. If set to , external resources are not resolved.In version 1.1 of the .NET Framework, the caller must be fully trusted in order to specify an .
// Token: 0x17000121 RID: 289
// (set) Token: 0x0600047D RID: 1149 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000121")]
public XmlResolver XmlResolver
{
[Token(Token = "0x600047D")]
[Address(RVA = "0x4DB3C0", Offset = "0x4DA3C0", VA = "0x1804DB3C0")]
set
{
}
}
// Token: 0x17000122 RID: 290
// (get) Token: 0x0600047E RID: 1150 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000122")]
internal XmlTextReaderImpl Impl
{
[Token(Token = "0x600047E")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return null;
}
}
// Token: 0x17000123 RID: 291
// (get) Token: 0x0600047F RID: 1151 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000123")]
internal override XmlNamespaceManager NamespaceManager
{
[Token(Token = "0x600047F")]
[Address(RVA = "0x4DB050", Offset = "0x4DA050", VA = "0x1804DB050", Slot = "51")]
get
{
return null;
}
}
// Token: 0x17000124 RID: 292
// (set) Token: 0x06000480 RID: 1152 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000124")]
internal bool XmlValidatingReaderCompatibilityMode
{
[Token(Token = "0x6000480")]
[Address(RVA = "0x4DB440", Offset = "0x4DA440", VA = "0x1804DB440")]
set
{
}
}
// Token: 0x17000125 RID: 293
// (get) Token: 0x06000481 RID: 1153 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000125")]
internal override IDtdInfo DtdInfo
{
[Token(Token = "0x6000481")]
[Address(RVA = "0x4DAEA0", Offset = "0x4D9EA0", VA = "0x1804DAEA0", Slot = "52")]
get
{
return null;
}
}
// Token: 0x04000287 RID: 647
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000287")]
private XmlTextReaderImpl impl;
}
}