C# Class System.Xml.XmlReader.XmlReader

Afficher le fichier Open project: runefs/Marvin

Private Properties

Свойство Type Description
CheckSupport void
CreateCustomizedTextReader XmlReader
CreateFilteredXmlReader XmlReader
CreateValidatingXmlReader XmlReader
GetLocation string
GetNodeType System.Xml.XmlNodeType
IDisposable void
IsContent bool
PopulateNameTable XmlNameTable
PopulateParserContext XmlParserContext
PopulateSettings XmlReaderSettings
ReadContentAsObject object
ReadContentString string
ReadContentString string
ReadElementContentAsObject object
ReadElementContentAsObject object
ValueAs object
XmlError XmlException
XmlError XmlException

Méthodes publiques

Méthode Description
Close ( ) : void
Create ( Stream stream ) : XmlReader
Create ( Stream stream, XmlReaderSettings settings ) : XmlReader
Create ( Stream stream, XmlReaderSettings settings, XmlParserContext context ) : XmlReader
Create ( Stream stream, XmlReaderSettings settings, string baseUri ) : XmlReader
Create ( TextReader reader ) : XmlReader
Create ( TextReader reader, XmlReaderSettings settings ) : XmlReader
Create ( TextReader reader, XmlReaderSettings settings, XmlParserContext context ) : XmlReader
Create ( TextReader reader, XmlReaderSettings settings, string baseUri ) : XmlReader
Create ( XmlReader reader, XmlReaderSettings settings ) : XmlReader
Create ( string url ) : XmlReader
Create ( string url, XmlReaderSettings settings ) : XmlReader
Create ( string url, XmlReaderSettings settings, XmlParserContext context ) : XmlReader
GetAttribute ( int i ) : string
GetAttribute ( string name ) : string
GetAttribute ( string localName, string namespaceName ) : string
IsName ( string s ) : bool
IsNameToken ( string s ) : bool
IsStartElement ( ) : bool
IsStartElement ( string name ) : bool
IsStartElement ( string localName, string namespaceName ) : bool
LookupNamespace ( string prefix ) : string
MoveToAttribute ( string name ) : bool
MoveToAttribute ( string localName, string namespaceName ) : bool
MoveToAttribute ( int i ) : void
MoveToContent ( ) : System.Xml.XmlNodeType
MoveToElement ( ) : bool
MoveToFirstAttribute ( ) : bool
MoveToNextAttribute ( ) : bool
Read ( ) : bool
ReadAttributeValue ( ) : bool
ReadContentAs ( Type type, IXmlNamespaceResolver resolver ) : object
ReadContentAsBase64 ( byte buffer, int offset, int length ) : int
ReadContentAsBinHex ( byte buffer, int offset, int length ) : int
ReadContentAsBoolean ( ) : bool
ReadContentAsDateTime ( ) : DateTime
ReadContentAsDecimal ( ) : decimal
ReadContentAsDouble ( ) : double
ReadContentAsFloat ( ) : float
ReadContentAsInt ( ) : int
ReadContentAsLong ( ) : long
ReadContentAsString ( ) : string
ReadElementContentAs ( Type type, IXmlNamespaceResolver resolver ) : object
ReadElementContentAs ( Type type, IXmlNamespaceResolver resolver, string localName, string namespaceURI ) : object
ReadElementContentAsBase64 ( byte buffer, int offset, int length ) : int
ReadElementContentAsBinHex ( byte buffer, int offset, int length ) : int
ReadElementContentAsBoolean ( ) : bool
ReadElementContentAsBoolean ( string localName, string namespaceURI ) : bool
ReadElementContentAsDateTime ( ) : DateTime
ReadElementContentAsDateTime ( string localName, string namespaceURI ) : DateTime
ReadElementContentAsDecimal ( ) : decimal
ReadElementContentAsDecimal ( string localName, string namespaceURI ) : decimal
ReadElementContentAsDouble ( ) : double
ReadElementContentAsDouble ( string localName, string namespaceURI ) : double
ReadElementContentAsFloat ( ) : float
ReadElementContentAsFloat ( string localName, string namespaceURI ) : float
ReadElementContentAsInt ( ) : int
ReadElementContentAsInt ( string localName, string namespaceURI ) : int
ReadElementContentAsLong ( ) : long
ReadElementContentAsLong ( string localName, string namespaceURI ) : long
ReadElementContentAsString ( ) : string
ReadElementContentAsString ( string localName, string namespaceURI ) : string
ReadElementString ( ) : string
ReadElementString ( string name ) : string
ReadElementString ( string localName, string namespaceName ) : string
ReadEndElement ( ) : void
ReadInnerXml ( ) : string
ReadOuterXml ( ) : string
ReadStartElement ( ) : void
ReadStartElement ( string name ) : void
ReadStartElement ( string localName, string namespaceName ) : void
ReadString ( ) : string
ReadSubtree ( ) : XmlReader
ReadToDescendant ( string name ) : bool
ReadToDescendant ( string localName, string namespaceURI ) : bool
ReadToFollowing ( string name ) : bool
ReadToFollowing ( string localName, string namespaceURI ) : bool
ReadToNextSibling ( string name ) : bool
ReadToNextSibling ( string localName, string namespaceURI ) : bool
ReadValueChunk ( char buffer, int offset, int length ) : int
ResolveEntity ( ) : void
Skip ( ) : void
this ( int i ) : string
this ( string name ) : string
this ( string name, string namespaceURI ) : string

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void
XmlReader ( ) : System.Collections

Private Methods

Méthode Description
CheckSupport ( ) : void
CreateCustomizedTextReader ( XmlTextReader reader, XmlReaderSettings settings ) : XmlReader
CreateFilteredXmlReader ( XmlReader reader, XmlReaderSettings settings ) : XmlReader
CreateValidatingXmlReader ( XmlReader reader, XmlReaderSettings settings ) : XmlReader
GetLocation ( ) : string
GetNodeType ( XmlReaderSettings settings ) : System.Xml.XmlNodeType
IDisposable ( ) : void
IsContent ( System.Xml.XmlNodeType nodeType ) : bool
PopulateNameTable ( XmlReaderSettings settings ) : XmlNameTable
PopulateParserContext ( XmlReaderSettings settings, string baseUri ) : XmlParserContext
PopulateSettings ( XmlReaderSettings src ) : XmlReaderSettings
ReadContentAsObject ( ) : object
ReadContentString ( ) : string
ReadContentString ( bool isText ) : string
ReadElementContentAsObject ( ) : object
ReadElementContentAsObject ( string localName, string namespaceURI ) : object
ValueAs ( string text, Type type, IXmlNamespaceResolver resolver ) : object
XmlError ( string message ) : XmlException
XmlError ( string message, Exception innerException ) : XmlException

Method Details

Close() public abstract méthode

public abstract Close ( ) : void
Résultat void

Create() public static méthode

public static Create ( Stream stream ) : XmlReader
stream System.IO.Stream
Résultat XmlReader

Create() public static méthode

public static Create ( Stream stream, XmlReaderSettings settings ) : XmlReader
stream System.IO.Stream
settings XmlReaderSettings
Résultat XmlReader

Create() public static méthode

public static Create ( Stream stream, XmlReaderSettings settings, XmlParserContext context ) : XmlReader
stream System.IO.Stream
settings XmlReaderSettings
context XmlParserContext
Résultat XmlReader

Create() public static méthode

public static Create ( Stream stream, XmlReaderSettings settings, string baseUri ) : XmlReader
stream System.IO.Stream
settings XmlReaderSettings
baseUri string
Résultat XmlReader

Create() public static méthode

public static Create ( TextReader reader ) : XmlReader
reader TextReader
Résultat XmlReader

Create() public static méthode

public static Create ( TextReader reader, XmlReaderSettings settings ) : XmlReader
reader TextReader
settings XmlReaderSettings
Résultat XmlReader

Create() public static méthode

public static Create ( TextReader reader, XmlReaderSettings settings, XmlParserContext context ) : XmlReader
reader TextReader
settings XmlReaderSettings
context XmlParserContext
Résultat XmlReader

Create() public static méthode

public static Create ( TextReader reader, XmlReaderSettings settings, string baseUri ) : XmlReader
reader TextReader
settings XmlReaderSettings
baseUri string
Résultat XmlReader

Create() public static méthode

public static Create ( XmlReader reader, XmlReaderSettings settings ) : XmlReader
reader XmlReader
settings XmlReaderSettings
Résultat XmlReader

Create() public static méthode

public static Create ( string url ) : XmlReader
url string
Résultat XmlReader

Create() public static méthode

public static Create ( string url, XmlReaderSettings settings ) : XmlReader
url string
settings XmlReaderSettings
Résultat XmlReader

Create() public static méthode

public static Create ( string url, XmlReaderSettings settings, XmlParserContext context ) : XmlReader
url string
settings XmlReaderSettings
context XmlParserContext
Résultat XmlReader

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

GetAttribute() public abstract méthode

public abstract GetAttribute ( int i ) : string
i int
Résultat string

GetAttribute() public abstract méthode

public abstract GetAttribute ( string name ) : string
name string
Résultat string

GetAttribute() public abstract méthode

public abstract GetAttribute ( string localName, string namespaceName ) : string
localName string
namespaceName string
Résultat string

IsName() public static méthode

public static IsName ( string s ) : bool
s string
Résultat bool

IsNameToken() public static méthode

public static IsNameToken ( string s ) : bool
s string
Résultat bool

IsStartElement() public méthode

public IsStartElement ( ) : bool
Résultat bool

IsStartElement() public méthode

public IsStartElement ( string name ) : bool
name string
Résultat bool

IsStartElement() public méthode

public IsStartElement ( string localName, string namespaceName ) : bool
localName string
namespaceName string
Résultat bool

LookupNamespace() public abstract méthode

public abstract LookupNamespace ( string prefix ) : string
prefix string
Résultat string

MoveToAttribute() public abstract méthode

public abstract MoveToAttribute ( string name ) : bool
name string
Résultat bool

MoveToAttribute() public abstract méthode

public abstract MoveToAttribute ( string localName, string namespaceName ) : bool
localName string
namespaceName string
Résultat bool

MoveToAttribute() public méthode

public MoveToAttribute ( int i ) : void
i int
Résultat void

MoveToContent() public méthode

public MoveToContent ( ) : System.Xml.XmlNodeType
Résultat System.Xml.XmlNodeType

MoveToElement() public abstract méthode

public abstract MoveToElement ( ) : bool
Résultat bool

MoveToFirstAttribute() public abstract méthode

public abstract MoveToFirstAttribute ( ) : bool
Résultat bool

MoveToNextAttribute() public abstract méthode

public abstract MoveToNextAttribute ( ) : bool
Résultat bool

Read() public abstract méthode

public abstract Read ( ) : bool
Résultat bool

ReadAttributeValue() public abstract méthode

public abstract ReadAttributeValue ( ) : bool
Résultat bool

ReadContentAs() public méthode

public ReadContentAs ( Type type, IXmlNamespaceResolver resolver ) : object
type Type
resolver IXmlNamespaceResolver
Résultat object

ReadContentAsBase64() public méthode

public ReadContentAsBase64 ( byte buffer, int offset, int length ) : int
buffer byte
offset int
length int
Résultat int

ReadContentAsBinHex() public méthode

public ReadContentAsBinHex ( byte buffer, int offset, int length ) : int
buffer byte
offset int
length int
Résultat int

ReadContentAsBoolean() public méthode

public ReadContentAsBoolean ( ) : bool
Résultat bool

ReadContentAsDateTime() public méthode

public ReadContentAsDateTime ( ) : DateTime
Résultat DateTime

ReadContentAsDecimal() public méthode

public ReadContentAsDecimal ( ) : decimal
Résultat decimal

ReadContentAsDouble() public méthode

public ReadContentAsDouble ( ) : double
Résultat double

ReadContentAsFloat() public méthode

public ReadContentAsFloat ( ) : float
Résultat float

ReadContentAsInt() public méthode

public ReadContentAsInt ( ) : int
Résultat int

ReadContentAsLong() public méthode

public ReadContentAsLong ( ) : long
Résultat long

ReadContentAsString() public méthode

public ReadContentAsString ( ) : string
Résultat string

ReadElementContentAs() public méthode

public ReadElementContentAs ( Type type, IXmlNamespaceResolver resolver ) : object
type Type
resolver IXmlNamespaceResolver
Résultat object

ReadElementContentAs() public méthode

public ReadElementContentAs ( Type type, IXmlNamespaceResolver resolver, string localName, string namespaceURI ) : object
type Type
resolver IXmlNamespaceResolver
localName string
namespaceURI string
Résultat object

ReadElementContentAsBase64() public méthode

public ReadElementContentAsBase64 ( byte buffer, int offset, int length ) : int
buffer byte
offset int
length int
Résultat int

ReadElementContentAsBinHex() public méthode

public ReadElementContentAsBinHex ( byte buffer, int offset, int length ) : int
buffer byte
offset int
length int
Résultat int

ReadElementContentAsBoolean() public méthode

public ReadElementContentAsBoolean ( ) : bool
Résultat bool

ReadElementContentAsBoolean() public méthode

public ReadElementContentAsBoolean ( string localName, string namespaceURI ) : bool
localName string
namespaceURI string
Résultat bool

ReadElementContentAsDateTime() public méthode

public ReadElementContentAsDateTime ( ) : DateTime
Résultat DateTime

ReadElementContentAsDateTime() public méthode

public ReadElementContentAsDateTime ( string localName, string namespaceURI ) : DateTime
localName string
namespaceURI string
Résultat DateTime

ReadElementContentAsDecimal() public méthode

public ReadElementContentAsDecimal ( ) : decimal
Résultat decimal

ReadElementContentAsDecimal() public méthode

public ReadElementContentAsDecimal ( string localName, string namespaceURI ) : decimal
localName string
namespaceURI string
Résultat decimal

ReadElementContentAsDouble() public méthode

public ReadElementContentAsDouble ( ) : double
Résultat double

ReadElementContentAsDouble() public méthode

public ReadElementContentAsDouble ( string localName, string namespaceURI ) : double
localName string
namespaceURI string
Résultat double

ReadElementContentAsFloat() public méthode

public ReadElementContentAsFloat ( ) : float
Résultat float

ReadElementContentAsFloat() public méthode

public ReadElementContentAsFloat ( string localName, string namespaceURI ) : float
localName string
namespaceURI string
Résultat float

ReadElementContentAsInt() public méthode

public ReadElementContentAsInt ( ) : int
Résultat int

ReadElementContentAsInt() public méthode

public ReadElementContentAsInt ( string localName, string namespaceURI ) : int
localName string
namespaceURI string
Résultat int

ReadElementContentAsLong() public méthode

public ReadElementContentAsLong ( ) : long
Résultat long

ReadElementContentAsLong() public méthode

public ReadElementContentAsLong ( string localName, string namespaceURI ) : long
localName string
namespaceURI string
Résultat long

ReadElementContentAsString() public méthode

public ReadElementContentAsString ( ) : string
Résultat string

ReadElementContentAsString() public méthode

public ReadElementContentAsString ( string localName, string namespaceURI ) : string
localName string
namespaceURI string
Résultat string

ReadElementString() public méthode

public ReadElementString ( ) : string
Résultat string

ReadElementString() public méthode

public ReadElementString ( string name ) : string
name string
Résultat string

ReadElementString() public méthode

public ReadElementString ( string localName, string namespaceName ) : string
localName string
namespaceName string
Résultat string

ReadEndElement() public méthode

public ReadEndElement ( ) : void
Résultat void

ReadInnerXml() public méthode

public ReadInnerXml ( ) : string
Résultat string

ReadOuterXml() public méthode

public ReadOuterXml ( ) : string
Résultat string

ReadStartElement() public méthode

public ReadStartElement ( ) : void
Résultat void

ReadStartElement() public méthode

public ReadStartElement ( string name ) : void
name string
Résultat void

ReadStartElement() public méthode

public ReadStartElement ( string localName, string namespaceName ) : void
localName string
namespaceName string
Résultat void

ReadString() public méthode

public ReadString ( ) : string
Résultat string

ReadSubtree() public méthode

public ReadSubtree ( ) : XmlReader
Résultat XmlReader

ReadToDescendant() public méthode

public ReadToDescendant ( string name ) : bool
name string
Résultat bool

ReadToDescendant() public méthode

public ReadToDescendant ( string localName, string namespaceURI ) : bool
localName string
namespaceURI string
Résultat bool

ReadToFollowing() public méthode

public ReadToFollowing ( string name ) : bool
name string
Résultat bool

ReadToFollowing() public méthode

public ReadToFollowing ( string localName, string namespaceURI ) : bool
localName string
namespaceURI string
Résultat bool

ReadToNextSibling() public méthode

public ReadToNextSibling ( string name ) : bool
name string
Résultat bool

ReadToNextSibling() public méthode

public ReadToNextSibling ( string localName, string namespaceURI ) : bool
localName string
namespaceURI string
Résultat bool

ReadValueChunk() public méthode

public ReadValueChunk ( char buffer, int offset, int length ) : int
buffer char
offset int
length int
Résultat int

ResolveEntity() public abstract méthode

public abstract ResolveEntity ( ) : void
Résultat void

Skip() public méthode

public Skip ( ) : void
Résultat void

XmlReader() protected méthode

protected XmlReader ( ) : System.Collections
Résultat System.Collections

this() public méthode

public this ( int i ) : string
i int
Résultat string

this() public méthode

public this ( string name ) : string
name string
Résultat string

this() public méthode

public this ( string name, string namespaceURI ) : string
name string
namespaceURI string
Résultat string