The members of System.Xml.XmlReader are listed below.
See Also: Inherited members from System.Object
| Constructs a new instance of the System.Xml.XmlReader class. |
| [read-only] abstract | AttributeCount | int. Gets the number of attributes on the current node. |
| [read-only] abstract | BaseURI | string. Gets the base Uniform Resource Identifier (URI) of the current node. |
| [read-only] | CanReadBinaryContent | bool. Documentation for this section has not yet been entered. |
| [read-only] | CanReadValueChunk | bool. Documentation for this section has not yet been entered. |
| [read-only] | CanResolveEntity | bool. Gets a value indicating whether this reader can parse and resolve entities. |
| [read-only] abstract | Depth | int. Gets the depth of the current node in the XML document. |
| [read-only] abstract | EOF | bool. Gets a value indicating whether the XmlReader.ReadState is ReadState.EndOfFile, signifying the reader is positioned at the end of the stream. |
| [read-only] | HasAttributes | bool. Gets a value indicating whether the current node has any attributes. |
| [read-only] abstract | HasValue | bool. Gets a value indicating whether the current node can have an associated text value. |
| [read-only] | IsDefault | 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. |
| [read-only] abstract | IsEmptyElement | bool. Gets a value indicating whether the current node is an empty element (for example, <MyElement />). |
| [read-only] default property | Item(int) | string. Retrieves the value of the attribute with the specified index relative to the containing element. |
| [read-only] default property | Item(string) | string. Retrieves the value of the attribute with the specified qualified name. |
| [read-only] default property | Item(string, string) | string. Retrieves the value of the attribute with the specified local name and namespace URI. |
| [read-only] abstract | LocalName | string. Gets the local name of the current node. |
| [read-only] | Name | string. Gets the qualified name of the current node. |
| [read-only] abstract | NamespaceURI | string. Gets the namespace URI associated with the node on which the reader is positioned. |
| [read-only] abstract | NameTable | XmlNameTable. Gets the name table used by the current instance to store and look up element and attribute names, prefixes, and namespaces. |
| [read-only] abstract | NodeType | XmlNodeType. Gets the type of the current node. |
| [read-only] abstract | Prefix | string. Gets the namespace prefix associated with the current node. |
| [read-only] | QuoteChar | char. Gets the quotation mark character used to enclose the value of an attribute. |
| [read-only] abstract | ReadState | ReadState. Gets the read state of the reader. |
| [read-only] | SchemaInfo | System.Xml.Schema.IXmlSchemaInfo. Documentation for this section has not yet been entered. |
| [read-only] | Settings | XmlReaderSettings. Documentation for this section has not yet been entered. |
| [read-only] abstract | Value | string. Gets the text value of the current node. |
| [read-only] | ValueType | Type. Documentation for this section has not yet been entered. |
| [read-only] | XmlLang | string. Gets the current xml:lang scope. |
| [read-only] | XmlSpace | XmlSpace. Gets the current xml:space scope. |
abstract | Close()Changes the XmlReader.ReadState to ReadState.Closed. | |
static | Create(System.IO.Stream)Documentation for this section has not yet been entered. | |
static | Create(System.IO.TextReader)Documentation for this section has not yet been entered. | |
static | Create(string)Documentation for this section has not yet been entered. | |
static | Create(System.IO.Stream, XmlReaderSettings)Documentation for this section has not yet been entered. | |
static | Create(System.IO.TextReader, XmlReaderSettings)Documentation for this section has not yet been entered. | |
static | Create(string, XmlReaderSettings)Documentation for this section has not yet been entered. | |
static | Create(XmlReader, XmlReaderSettings)Documentation for this section has not yet been entered. | |
static | Create(System.IO.Stream, XmlReaderSettings, string)Documentation for this section has not yet been entered. | |
static | Create(System.IO.Stream, XmlReaderSettings, XmlParserContext)Documentation for this section has not yet been entered. | |
static | Create(System.IO.TextReader, XmlReaderSettings, string)Documentation for this section has not yet been entered. | |
static | Create(System.IO.TextReader, XmlReaderSettings, XmlParserContext)Documentation for this section has not yet been entered. | |
static | Create(string, XmlReaderSettings, XmlParserContext)Documentation for this section has not yet been entered. | |
abstract | GetAttribute(int)Returns the value of the attribute with the specified index relative to the containing element. | |
abstract | GetAttribute(string)Returns the value of the attribute with the specified qualified name. | |
abstract | GetAttribute(string, string)Returns the value of the attribute with the specified local name and namespace URI. | |
static | IsName(string)Determines whether the specified string is a valid XML name. | |
static | IsNameToken(string)Determines whether the specified string is a valid XML name token (Nmtoken). | |
IsStartElement()Determines if a node containing content is an Element node. | ||
IsStartElement(string)Determines if a node containing content is an Element node with the specified qualified name. | ||
IsStartElement(string, string)Determines if a node containing content is an Element node with the specified local name and namespace URI. | ||
abstract | LookupNamespace(string)Resolves a namespace prefix in the scope of the current element. | |
MoveToAttribute(int)Moves the position of the current instance to the attribute with the specified index relative to the containing element. | ||
abstract | MoveToAttribute(string)Moves the position of the current instance to the attribute with the specified qualified name. | |
abstract | MoveToAttribute(string, string)Moves the position of the current instance to the attribute with the specified local name and namespace URI. | |
MoveToContent()Determines whether the current node can contain content and, if not, moves the position of the current instance to the next content node or the end of the input stream. | ||
abstract | MoveToElement()Moves the position of the current instance to the node that contains the current Attribute node. | |
abstract | MoveToFirstAttribute()Moves the position of the current instance to the first attribute associated with the current node. | |
abstract | MoveToNextAttribute()Moves the position of the current instance to the next attribute associated with the current node. | |
abstract | Read()Moves the position of the current instance to the next node in the stream, exposing its properties. | |
abstract | ReadAttributeValue()Parses an attribute value into one or more Text, EntityReference, and EndEntity nodes. | |
ReadContentAs(Type, IXmlNamespaceResolver)Documentation for this section has not yet been entered. | ||
ReadContentAsBase64(byte[], int, int)Documentation for this section has not yet been entered. | ||
ReadContentAsBinHex(byte[], int, int)Documentation for this section has not yet been entered. | ||
ReadContentAsBoolean()Documentation for this section has not yet been entered. | ||
ReadContentAsDateTime()Documentation for this section has not yet been entered. | ||
ReadContentAsDecimal()Documentation for this section has not yet been entered. | ||
ReadContentAsDouble()Documentation for this section has not yet been entered. | ||
ReadContentAsFloat()Documentation for this section has not yet been entered. | ||
ReadContentAsInt()Documentation for this section has not yet been entered. | ||
ReadContentAsLong()Documentation for this section has not yet been entered. | ||
ReadContentAsObject()Documentation for this section has not yet been entered. | ||
ReadContentAsString()Documentation for this section has not yet been entered. | ||
ReadElementContentAs(Type, IXmlNamespaceResolver)Documentation for this section has not yet been entered. | ||
ReadElementContentAs(Type, IXmlNamespaceResolver, string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsBase64(byte[], int, int)Documentation for this section has not yet been entered. | ||
ReadElementContentAsBinHex(byte[], int, int)Documentation for this section has not yet been entered. | ||
ReadElementContentAsBoolean()Documentation for this section has not yet been entered. | ||
ReadElementContentAsBoolean(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsDateTime()Documentation for this section has not yet been entered. | ||
ReadElementContentAsDateTime(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsDecimal()Documentation for this section has not yet been entered. | ||
ReadElementContentAsDecimal(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsDouble()Documentation for this section has not yet been entered. | ||
ReadElementContentAsDouble(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsFloat()Documentation for this section has not yet been entered. | ||
ReadElementContentAsFloat(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsInt()Documentation for this section has not yet been entered. | ||
ReadElementContentAsInt(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsLong()Documentation for this section has not yet been entered. | ||
ReadElementContentAsLong(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsObject()Documentation for this section has not yet been entered. | ||
ReadElementContentAsObject(string, string)Documentation for this section has not yet been entered. | ||
ReadElementContentAsString()Documentation for this section has not yet been entered. | ||
ReadElementContentAsString(string, string)Documentation for this section has not yet been entered. | ||
ReadElementString()Reads the contents of a text-only element. | ||
ReadElementString(string)Reads the contents of a text-only element with the specified qualified name. | ||
ReadElementString(string, string)Reads the contents of a text-only element with the specified local name and namespace URI. | ||
ReadEndElement()Reads an EndElement node and advances the reader to the next node. | ||
ReadInnerXml()Reads the contents of the current node, including child nodes and markup. | ||
ReadOuterXml()Reads the current node and its contents, including child nodes and markup. | ||
ReadStartElement()Reads an Element node and advances the reader to the next node. | ||
ReadStartElement(string)Reads an Element node with the specified qualified name and advances the reader to the next node. | ||
ReadStartElement(string, string)Reads an Element node with the specified local name and namespace URI and advances the reader to the next node. | ||
ReadString()Reads the contents of an element or text node as a string. | ||
ReadSubtree()Documentation for this section has not yet been entered. | ||
ReadToDescendant(string)Documentation for this section has not yet been entered. | ||
ReadToDescendant(string, string)Documentation for this section has not yet been entered. | ||
ReadToFollowing(string)Documentation for this section has not yet been entered. | ||
ReadToFollowing(string, string)Documentation for this section has not yet been entered. | ||
ReadToNextSibling(string)Documentation for this section has not yet been entered. | ||
ReadToNextSibling(string, string)Documentation for this section has not yet been entered. | ||
ReadValueChunk(char[], int, int)Documentation for this section has not yet been entered. | ||
abstract | ResolveEntity()Resolves the entity reference for EntityReference nodes. | |
Skip()Skips over the current element and moves the position of the current instance to the next node in the stream. | ||
| IDisposable.Dispose | Documentation for this section has not yet been entered. |