CefXmlReader MethodsXilium.CefGlue

[This is preliminary documentation and is subject to change.]

The CefXmlReader type exposes the following members.
Methods

  NameDescription
Public methodClose
Close the document. This should be called directly to ensure that cleanup occurs on the correct thread.
Public methodStatic memberCreate
Create a new CefXmlReader object. The returned object's methods can only be called from the thread that created the object.
Public methodDispose
Public methodOnlineEquals
Determines whether the specified OnlineObject is equal to the current OnlineObject.
(Inherited from OnlineObject.)
Protected methodFinalize (Overrides OnlineObject Finalize .)
Public methodGetAttribute(Int32)
Returns the value of the attribute at the specified 0-based index.
Public methodGetAttribute(String)
Returns the value of the attribute with the specified qualified name.
Public methodGetAttribute(String, String)
Returns the value of the attribute with the specified local name and namespace URI.
Public methodOnlineGetHashCode
Serves as a hash function for a particular type.
(Inherited from OnlineObject.)
Public methodGetInnerXml
Returns an XML representation of the current node's children.
Public methodGetOuterXml
Returns an XML representation of the current node including its children.
Public methodOnlineGetType
Gets the OnlineType of the current instance.
(Inherited from OnlineObject.)
Protected methodOnlineMemberwiseClone
Creates a shallow copy of the current OnlineObject.
(Inherited from OnlineObject.)
Public methodMoveToAttribute(Int32)
Attribute nodes are not traversed by default. The below methods can be used to move the cursor to an attribute node. MoveToCarryingElement() can be called afterwards to return the cursor to the carrying element. The depth of an attribute node will be 1 + the depth of the carrying element. Moves the cursor to the attribute at the specified 0-based index. Returns true if the cursor position was set successfully.
Public methodMoveToAttribute(String)
Moves the cursor to the attribute with the specified qualified name. Returns true if the cursor position was set successfully.
Public methodMoveToAttribute(String, String)
Moves the cursor to the attribute with the specified local name and namespace URI. Returns true if the cursor position was set successfully.
Public methodMoveToCarryingElement
Moves the cursor back to the carrying element. Returns true if the cursor position was set successfully.
Public methodMoveToFirstAttribute
Moves the cursor to the first attribute in the current element. Returns true if the cursor position was set successfully.
Public methodMoveToNextAttribute
Moves the cursor to the next attribute in the current element. Returns true if the cursor position was set successfully.
Public methodMoveToNextNode
Moves the cursor to the next node in the document. This method must be called at least once to set the current cursor position. Returns true if the cursor position was set successfully.
Public methodOnlineToString
Returns a OnlineString that represents the current OnlineObject.
(Inherited from OnlineObject.)
Back to Top
See Also