type TCefXmlReaderRef = class(TCefBaseRefCountedRef, ICefXmlReader)
This item has no description.
function MoveToNextNode: Boolean; |
|
function Close: Boolean; |
|
function HasError: Boolean; |
|
function GetError: ustring; |
|
function GetType: TCefXmlNodeType; |
|
function GetDepth: Integer; |
|
function GetLocalName: ustring; |
|
function GetPrefix: ustring; |
|
function GetQualifiedName: ustring; |
|
function GetNamespaceUri: ustring; |
|
function GetBaseUri: ustring; |
|
function GetXmlLang: ustring; |
|
function IsEmptyElement: Boolean; |
|
function HasValue: Boolean; |
|
function GetValue: ustring; |
|
function HasAttributes: Boolean; |
|
function GetAttributeCount: NativeUInt; |
|
function GetAttributeByIndex(index: Integer): ustring; |
|
function GetAttributeByQName(const qualifiedName: ustring): ustring; |
|
function GetAttributeByLName(const localName, namespaceURI: ustring): ustring; |
|
function GetInnerXml: ustring; |
|
function GetOuterXml: ustring; |
|
function GetLineNumber: Integer; |
|
function MoveToAttributeByIndex(index: Integer): Boolean; |
|
function MoveToAttributeByQName(const qualifiedName: ustring): Boolean; |
|
function MoveToAttributeByLName(const localName, namespaceURI: ustring): Boolean; |
|
function MoveToFirstAttribute: Boolean; |
|
function MoveToNextAttribute: Boolean; |
|
function MoveToCarryingElement: Boolean; |
|
class function UnWrap(data: Pointer): ICefXmlReader; |
|
class function New(const stream: ICefStreamReader; encodingType: TCefXmlEncodingType; const URI: ustring): ICefXmlReader; |
function MoveToNextNode: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToNextNode. Moves the cursor to the next node in the document. This function must be called at least once to set the current cursor position. Returns true (1) if the cursor position was set successfully. |
function Close: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.Close. Close the document. This should be called directly to ensure that cleanup occurs on the correct thread. |
function HasError: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.HasError. Returns true (1) if an error has been reported by the XML parser. |
function GetError: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetError. Returns the error string. |
function GetType: TCefXmlNodeType; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetType. Returns the node type. |
function GetDepth: Integer; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetDepth. Returns the node depth. Depth starts at 0 for the root node. |
function GetLocalName: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetLocalName. Returns the local name. See http://www.w3.org/TR/REC-xml-names/#NT- LocalPart for additional details. |
function GetPrefix: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetPrefix. Returns the namespace prefix. See http://www.w3.org/TR/REC-xml-names/ for additional details. |
function GetQualifiedName: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetQualifiedName. Returns the qualified name, equal to (Prefix:)LocalName. See http://www.w3.org/TR/REC-xml-names/#ns-qualnames for additional details. |
function GetNamespaceUri: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetNamespaceUri. Returns the URI defining the namespace associated with the node. See http://www.w3.org/TR/REC-xml-names/ for additional details. |
function GetBaseUri: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetBaseUri. Returns the base URI of the node. See http://www.w3.org/TR/xmlbase/ for additional details. |
function GetXmlLang: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetXmlLang. Returns the xml:lang scope within which the node resides. See http://www.w3.org/TR/REC-xml/#sec-lang-tag for additional details. |
function IsEmptyElement: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.IsEmptyElement. Returns true (1) if the node represents an NULL element. "<a/>" is considered NULL but "<a></a>" is not. |
function HasValue: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.HasValue. Returns true (1) if the node has a text value. |
function GetValue: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetValue. Returns the text value. |
function HasAttributes: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.HasAttributes. Returns true (1) if the node has attributes. |
function GetAttributeCount: NativeUInt; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetAttributeCount. Returns the number of attributes. |
function GetAttributeByIndex(index: Integer): ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetAttributeByIndex. Returns the value of the attribute at the specified 0-based index. |
function GetAttributeByQName(const qualifiedName: ustring): ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetAttributeByQName. Returns the value of the attribute with the specified qualified name. |
function GetAttributeByLName(const localName, namespaceURI: ustring): ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetAttributeByLName. Returns the value of the attribute with the specified local name and namespace URI. |
function GetInnerXml: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetInnerXml. Returns an XML representation of the current node's children. |
function GetOuterXml: ustring; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetOuterXml. Returns an XML representation of the current node including its children. |
function GetLineNumber: Integer; |
|
This item has no description. Showing description inherited from ICefXmlReader.GetLineNumber. Returns the line number for the current node. |
function MoveToAttributeByIndex(index: Integer): Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToAttributeByIndex. Moves the cursor to the attribute at the specified 0-based index. Returns true (1) if the cursor position was set successfully. |
function MoveToAttributeByQName(const qualifiedName: ustring): Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToAttributeByQName. Moves the cursor to the attribute with the specified qualified name. Returns true (1) if the cursor position was set successfully. |
function MoveToAttributeByLName(const localName, namespaceURI: ustring): Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToAttributeByLName. Moves the cursor to the attribute with the specified local name and namespace URI. Returns true (1) if the cursor position was set successfully. |
function MoveToFirstAttribute: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToFirstAttribute. Moves the cursor to the first attribute in the current element. Returns true (1) if the cursor position was set successfully. |
function MoveToNextAttribute: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToNextAttribute. Moves the cursor to the next attribute in the current element. Returns true (1) if the cursor position was set successfully. |
function MoveToCarryingElement: Boolean; |
|
This item has no description. Showing description inherited from ICefXmlReader.MoveToCarryingElement. Moves the cursor back to the carrying element. Returns true (1) if the cursor position was set successfully. |
class function UnWrap(data: Pointer): ICefXmlReader; |
|
This item has no description. |
class function New(const stream: ICefStreamReader; encodingType: TCefXmlEncodingType; const URI: ustring): ICefXmlReader; |
|
This item has no description. |