|
|
|
|
|
AttributeCount(self)
Provides the number of attributes of the current node |
source code
|
|
|
|
|
ByteConsumed(self)
This function provides the current index of the parser used by the
reader, relative to the start of the current entity. |
source code
|
|
|
Close(self)
This method releases any resources allocated by the current
instance changes the state to Closed and close any underlying
input. |
source code
|
|
|
CurrentDoc(self)
Hacking interface allowing to get the xmlDocPtr correponding to
the current document being accessed by the xmlTextReader. |
source code
|
|
|
CurrentNode(self)
Hacking interface allowing to get the xmlNodePtr correponding to
the current node being accessed by the xmlTextReader. |
source code
|
|
|
Depth(self)
The depth of the node in the tree. |
source code
|
|
|
Encoding(self)
Determine the encoding of the document being read. |
source code
|
|
|
Expand(self)
Reads the contents of the current node and the full subtree. |
source code
|
|
|
GetAttribute(self,
name)
Provides the value of the attribute with the specified qualified
name. |
source code
|
|
|
GetAttributeNo(self,
no)
Provides the value of the attribute with the specified index
relative to the containing element. |
source code
|
|
|
GetAttributeNs(self,
localName,
namespaceURI)
Provides the value of the specified attribute |
source code
|
|
|
GetParserColumnNumber(self)
Provide the column number of the current parsing point. |
source code
|
|
|
GetParserLineNumber(self)
Provide the line number of the current parsing point. |
source code
|
|
|
GetParserProp(self,
prop)
Read the parser internal property. |
source code
|
|
|
|
|
HasAttributes(self)
Whether the node has attributes. |
source code
|
|
|
HasValue(self)
Whether the node can have a text value. |
source code
|
|
|
IsDefault(self)
Whether an Attribute node was generated from the default value
defined in the DTD or schema. |
source code
|
|
|
IsEmptyElement(self)
Check if the current node is empty |
source code
|
|
|
IsNamespaceDecl(self)
Determine whether the current node is a namespace declaration
rather than a regular attribute. |
source code
|
|
|
IsValid(self)
Retrieve the validity status from the parser context |
source code
|
|
|
LocalName(self)
The local name of the node. |
source code
|
|
|
LookupNamespace(self,
prefix)
Resolves a namespace prefix in the scope of the current
element. |
source code
|
|
|
MoveToAttribute(self,
name)
Moves the position of the current instance to the attribute with
the specified qualified name. |
source code
|
|
|
MoveToAttributeNo(self,
no)
Moves the position of the current instance to the attribute with
the specified index relative to the containing element. |
source code
|
|
|
MoveToAttributeNs(self,
localName,
namespaceURI)
Moves the position of the current instance to the attribute with
the specified local name and namespace URI. |
source code
|
|
|
MoveToElement(self)
Moves the position of the current instance to the node that
contains the current Attribute node. |
source code
|
|
|
MoveToFirstAttribute(self)
Moves the position of the current instance to the first attribute
associated with the current node. |
source code
|
|
|
MoveToNextAttribute(self)
Moves the position of the current instance to the next attribute
associated with the current node. |
source code
|
|
|
Name(self)
The qualified name of the node, equal to Prefix :LocalName. |
source code
|
|
|
NamespaceUri(self)
The URI defining the namespace associated with the node. |
source code
|
|
|
NewDoc(self,
cur,
URL,
encoding,
options)
Setup an xmltextReader to parse an XML in-memory document. |
source code
|
|
|
NewFd(self,
fd,
URL,
encoding,
options)
Setup an xmltextReader to parse an XML from a file descriptor. |
source code
|
|
|
NewFile(self,
filename,
encoding,
options)
parse an XML file from the filesystem or the network. |
source code
|
|
|
NewMemory(self,
buffer,
size,
URL,
encoding,
options)
Setup an xmltextReader to parse an XML in-memory document. |
source code
|
|
|
|
|
Next(self)
Skip to the node following the current one in document order while
avoiding the subtree if any. |
source code
|
|
|
NextSibling(self)
Skip to the node following the current one in document order while
avoiding the subtree if any. |
source code
|
|
|
NodeType(self)
Get the node type of the current node Reference:
http://dotgnu.org/pnetlib-doc/System/Xml/XmlNodeType.html |
source code
|
|
|
|
|
Prefix(self)
A shorthand reference to the namespace associated with the
node. |
source code
|
|
|
|
|
QuoteChar(self)
The quotation mark character used to enclose the value of an
attribute. |
source code
|
|
|
Read(self)
Moves the position of the current instance to the next node in the
stream, exposing its properties. |
source code
|
|
|
ReadAttributeValue(self)
Parses an attribute value into one or more Text and
EntityReference nodes. |
source code
|
|
|
ReadInnerXml(self)
Reads the contents of the current node, including child nodes and
markup. |
source code
|
|
|
ReadOuterXml(self)
Reads the contents of the current node, including child nodes and
markup. |
source code
|
|
|
ReadState(self)
Gets the read state of the reader. |
source code
|
|
|
ReadString(self)
Reads the contents of an element or a text node as a string. |
source code
|
|
|
|
|
|
|
|
|
|
|
SetParserProp(self,
prop,
value)
Change the parser processing behaviour by changing some of its
internal properties. |
source code
|
|
|
|
|
Setup(self,
input,
URL,
encoding,
options)
Setup an XML reader with new options |
source code
|
|
|
Standalone(self)
Determine the standalone status of the document being read. |
source code
|
|
|
String(self,
str)
Get an interned string from the reader, allows for example to
speedup string name comparisons |
source code
|
|
|
Value(self)
Provides the text value of the node if present |
source code
|
|
|
XmlLang(self)
The xml:lang scope within which the node resides. |
source code
|
|
|
XmlVersion(self)
Determine the XML version of the document being read. |
source code
|
|
Inherited from xmlTextReaderCore :
GetErrorHandler ,
SetErrorHandler
|