XmlDocument
XmlDocument
XmlDocument
XmlDocument
Class
Definition
Represents the top level of the XML source. This class includes members for retrieving and creating all other XML objects.
public : sealed class XmlDocument : IXmlDocument, IXmlDocumentIO, IXmlDocumentIO2, IXmlNode, IXmlNodeSelector, IXmlNodeSerializerpublic sealed class XmlDocument : IXmlDocument, IXmlDocumentIO, IXmlDocumentIO2, IXmlNode, IXmlNodeSelector, IXmlNodeSerializerPublic NotInheritable Class XmlDocument Implements IXmlDocument, IXmlDocumentIO, IXmlDocumentIO2, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Constructors
XmlDocument() XmlDocument() XmlDocument() XmlDocument()
Creates a new instance of the XmlDocument class.
public : XmlDocument()public XmlDocument()Public Sub New()// You can use this method in JavaScript.
Properties
Attributes Attributes Attributes Attributes
Gets the list of attributes of this node.
public : XmlNamedNodeMap Attributes { get; }public XmlNamedNodeMap Attributes { get; }Public ReadOnly Property Attributes As XmlNamedNodeMap// You can use this property in JavaScript.
The attributes for this node.
ChildNodes ChildNodes ChildNodes ChildNodes
Gets a list of children in the current node.
public : XmlNodeList ChildNodes { get; }public XmlNodeList ChildNodes { get; }Public ReadOnly Property ChildNodes As XmlNodeList// You can use this property in JavaScript.
The list of child nodes.
Doctype Doctype Doctype Doctype
For XML, this property gets the address of the node that specifies the DTD. This property returns Null for for HTML documents and XML documents without a DTD.
public : XmlDocumentType Doctype { get; }public XmlDocumentType Doctype { get; }Public ReadOnly Property Doctype As XmlDocumentType// You can use this property in JavaScript.
The document type.
DocumentElement DocumentElement DocumentElement DocumentElement
Gets the root element of the document.
public : XmlElement DocumentElement { get; }public XmlElement DocumentElement { get; }Public ReadOnly Property DocumentElement As XmlElement// You can use this property in JavaScript.
The root element of the document.
DocumentUri DocumentUri DocumentUri DocumentUri
Returns the URL for the last loaded XML document.
public : PlatForm::String DocumentUri { get; }public string DocumentUri { get; }Public ReadOnly Property DocumentUri As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The URL for the last loaded XML document.
FirstChild FirstChild FirstChild FirstChild
Gets the first child node.
public : IXmlNode FirstChild { get; }public IXmlNode FirstChild { get; }Public ReadOnly Property FirstChild As IXmlNode// You can use this property in JavaScript.
Implementation Implementation Implementation Implementation
Gets the Implementation object for the document.
public : XmlDomImplementation Implementation { get; }public XmlDomImplementation Implementation { get; }Public ReadOnly Property Implementation As XmlDomImplementation// You can use this property in JavaScript.
The Implementation object for the document.
InnerText InnerText InnerText InnerText
Gets the text from inside the XML.
public : PlatForm::String InnerText { get; set; }public string InnerText { get; set; }Public ReadWrite Property InnerText As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The text from inside the XML. Returns an empty string if there is no text.
LocalName LocalName LocalName LocalName
Gets the local name, which is the local part of a qualified name. This is called the local part in Namespaces in XML.
public : PlatForm::Object LocalName { get; }public object LocalName { get; }Public ReadOnly Property LocalName As object// You can use this property in JavaScript.
- Value
- PlatForm::Object object object object
The local name.
NamespaceUri NamespaceUri NamespaceUri NamespaceUri
Returns the Uniform Resource Identifier (URI) for the namespace.
public : PlatForm::Object NamespaceUri { get; }public object NamespaceUri { get; }Public ReadOnly Property NamespaceUri As object// You can use this property in JavaScript.
- Value
- PlatForm::Object object object object
The Uri for the namespace. This refers to the "uuu" portion of the namespace declaration xmlns:nnn="uuu".
NextSibling NextSibling NextSibling NextSibling
Gets the next sibling of the node in the parent's child list. This property is not applicable to this class.
public : IXmlNode NextSibling { get; }public IXmlNode NextSibling { get; }Public ReadOnly Property NextSibling As IXmlNode// You can use this property in JavaScript.
NodeName NodeName NodeName NodeName
Returns the qualified name for attribute, document type, element, entity, or notation nodes. Returns a fixed string for all other node types.
public : PlatForm::String NodeName { get; }public string NodeName { get; }Public ReadOnly Property NodeName As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The qualified node name, which varies depending on the node type.
NodeType NodeType NodeType NodeType
Gets the XML Document Object Model (DOM) node type, which determines valid values and whether the node can have child nodes.
public : NodeType NodeType { get; }public NodeType NodeType { get; }Public ReadOnly Property NodeType As NodeType// You can use this property in JavaScript.
NodeValue NodeValue NodeValue NodeValue
Gets or sets the text associated with the node.
public : PlatForm::Object NodeValue { get; set; }public object NodeValue { get; set; }Public ReadWrite Property NodeValue As object// You can use this property in JavaScript.
- Value
- PlatForm::Object object object object
The text associated with the node.
Remarks
This value depends on the NodeType property. The following table describes this dependency.
| NodeType | NodeValue |
|---|---|
| Element | Null |
| Attribute | Value of attribute |
| Text | Content of the text node |
| CDATASection | Content of the CDATA Section |
| EntityReference | NULL |
| Entity | NULL |
| ProcessingInstruction | Entire content excluding the target |
| Comment | Content of the comment |
| Document | NULL |
| DocumentType | NULL |
| DocumentFragment | NULL |
| Notation | NULL |
OwnerDocument OwnerDocument OwnerDocument OwnerDocument
Returns the root of the document that contains the node.
public : XmlDocument OwnerDocument { get; }public XmlDocument OwnerDocument { get; }Public ReadOnly Property OwnerDocument As XmlDocument// You can use this property in JavaScript.
The parent document that represents the root of the document.
Prefix Prefix Prefix Prefix
Gets or sets the namespace prefix.
public : PlatForm::Object Prefix { get; set; }public object Prefix { get; set; }Public ReadWrite Property Prefix As object// You can use this property in JavaScript.
- Value
- PlatForm::Object object object object
The namespace prefix specified on the element, attribute, or entity reference. For example, for the element <xxx:yyy>, this property returns xxx. It returns an empty string, "", if no prefix is specified.
PreviousSibling PreviousSibling PreviousSibling PreviousSibling
Gets the previous sibling of the node in the parent's child list. This property is not applicable to this class.
public : IXmlNode PreviousSibling { get; }public IXmlNode PreviousSibling { get; }Public ReadOnly Property PreviousSibling As IXmlNode// You can use this property in JavaScript.
Methods
AppendChild(IXmlNode) AppendChild(IXmlNode) AppendChild(IXmlNode) AppendChild(IXmlNode)
Appends a new child node as the last child of the node.
public : IXmlNode AppendChild(IXmlNode newChild)public IXmlNode AppendChild(IXmlNode newChild)Public Function AppendChild(newChild As IXmlNode) As IXmlNode// You can use this method in JavaScript.
The new child node to be appended to the end of the list of children of this node.
CloneNode(Boolean) CloneNode(Boolean) CloneNode(Boolean) CloneNode(Boolean)
Clones a new node.
public : IXmlNode CloneNode(bool deep)public IXmlNode CloneNode(Boolean deep)Public Function CloneNode(deep As Boolean) As IXmlNode// You can use this method in JavaScript.
- deep
- bool Boolean Boolean Boolean
A flag that indicates whether to recursively clone all nodes that are descendants of this node. If true, this method creates a clone of the complete tree below this node. If false, this method clones this node and its attributes only.
CreateAttribute(String) CreateAttribute(String) CreateAttribute(String) CreateAttribute(String)
Creates a new attribute with the specified name.
public : XmlAttribute CreateAttribute(PlatForm::String name)public XmlAttribute CreateAttribute(String name)Public Function CreateAttribute(name As String) As XmlAttribute// You can use this method in JavaScript.
- name
- PlatForm::String String String String
The name of the new attribute object. This name is subsequently available as the new node's NodeName property.
The newly created attribute.
CreateAttributeNS(Object, String) CreateAttributeNS(Object, String) CreateAttributeNS(Object, String) CreateAttributeNS(Object, String)
Creates a new attribute with the specified namespace and name.
public : XmlAttribute CreateAttributeNS(PlatForm::Object namespaceUri, PlatForm::String qualifiedName)public XmlAttribute CreateAttributeNS(Object namespaceUri, String qualifiedName)Public Function CreateAttributeNS(namespaceUri As Object, qualifiedName As String) As XmlAttribute// You can use this method in JavaScript.
- namespaceUri
- PlatForm::Object Object Object Object
The name of the desired namespace or a null value if no namespace is desired.
- qualifiedName
- PlatForm::String String String String
The name of the new attribute object. This name is subsequently available as the new node's NodeName property.
The newly created attribute.
CreateCDataSection(String) CreateCDataSection(String) CreateCDataSection(String) CreateCDataSection(String)
Creates a CDATA section node that contains the supplied data.
public : XmlCDataSection CreateCDataSection(PlatForm::String data)public XmlCDataSection CreateCDataSection(String data)Public Function CreateCDataSection(data As String) As XmlCDataSection// You can use this method in JavaScript.
- data
- PlatForm::String String String String
The value to be supplied to the new CDATA section object's NodeValue property.
The newly created object.
CreateComment(String) CreateComment(String) CreateComment(String) CreateComment(String)
Creates a comment node that contains the supplied data.
public : XmlComment CreateComment(PlatForm::String data)public XmlComment CreateComment(String data)Public Function CreateComment(data As String) As XmlComment// You can use this method in JavaScript.
- data
- PlatForm::String String String String
The value to be supplied to the new comment object's NodeValue.
The newly created comment node.
CreateDocumentFragment() CreateDocumentFragment() CreateDocumentFragment() CreateDocumentFragment()
Creates an empty XmlDocumentFragment object.
public : XmlDocumentFragment CreateDocumentFragment()public XmlDocumentFragment CreateDocumentFragment()Public Function CreateDocumentFragment() As XmlDocumentFragment// You can use this method in JavaScript.
The newly created object.
CreateElement(String) CreateElement(String) CreateElement(String) CreateElement(String)
Creates an element node using the specified name.
public : XmlElement CreateElement(PlatForm::String tagName)public XmlElement CreateElement(String tagName)Public Function CreateElement(tagName As String) As XmlElement// You can use this method in JavaScript.
- tagName
- PlatForm::String String String String
The name for the new element node. The string is case-sensitive. This name is subsequently available as the element node's NodeName property.
The newly created object.
CreateElementNS(Object, String) CreateElementNS(Object, String) CreateElementNS(Object, String) CreateElementNS(Object, String)
Creates an element node using the specified namespace and name.
public : XmlElement CreateElementNS(PlatForm::Object namespaceUri, PlatForm::String qualifiedName)public XmlElement CreateElementNS(Object namespaceUri, String qualifiedName)Public Function CreateElementNS(namespaceUri As Object, qualifiedName As String) As XmlElement// You can use this method in JavaScript.
- namespaceUri
- PlatForm::Object Object Object Object
The name of the desired namespace or a null value if no namespace is desired.
- qualifiedName
- PlatForm::String String String String
The name for the new element node. It is case-sensitive. This name is subsequently available as the element node's NodeName property.
The newly created object.
CreateEntityReference(String) CreateEntityReference(String) CreateEntityReference(String) CreateEntityReference(String)
Creates a new XmlEntityReference object.
public : XmlEntityReference CreateEntityReference(PlatForm::String name)public XmlEntityReference CreateEntityReference(String name)Public Function CreateEntityReference(name As String) As XmlEntityReference// You can use this method in JavaScript.
- name
- PlatForm::String String String String
The name of the entity referenced. This name is subsequently available as the new object's NodeName property.
The newly created object.
CreateProcessingInstruction(String, String) CreateProcessingInstruction(String, String) CreateProcessingInstruction(String, String) CreateProcessingInstruction(String, String)
Creates a processing instruction node that contains the supplied target and data.
public : XmlProcessingInstruction CreateProcessingInstruction(PlatForm::String target, PlatForm::String data)public XmlProcessingInstruction CreateProcessingInstruction(String target, String data)Public Function CreateProcessingInstruction(target As String, data As String) As XmlProcessingInstruction// You can use this method in JavaScript.
- target
- PlatForm::String String String String
The target part of the processing instruction. It supplies the NodeName property of the new object.
- data
- PlatForm::String String String String
The remainder of the processing instruction preceding the closing** ?>** characters. It supplies the NodeValue property for the new object.
The newly created object.
CreateTextNode(String) CreateTextNode(String) CreateTextNode(String) CreateTextNode(String)
Creates a text node that contains the supplied data.
public : XmlText CreateTextNode(PlatForm::String data)public XmlText CreateTextNode(String data)Public Function CreateTextNode(data As String) As XmlText// You can use this method in JavaScript.
- data
- PlatForm::String String String String
The value to be supplied to the new text object's NodeValue.
GetElementById(String) GetElementById(String) GetElementById(String) GetElementById(String)
Returns the element that matches the ID attribute.
public : XmlElement GetElementById(PlatForm::String elementId)public XmlElement GetElementById(String elementId)Public Function GetElementById(elementId As String) As XmlElement// You can use this method in JavaScript.
- elementId
- PlatForm::String String String String
The ID to match.
The element that matches the supplied ID. If no elements match, this method returns Null.
GetElementsByTagName(String) GetElementsByTagName(String) GetElementsByTagName(String) GetElementsByTagName(String)
Returns a collection of elements that have the specified name.
public : XmlNodeList GetElementsByTagName(PlatForm::String tagName)public XmlNodeList GetElementsByTagName(String tagName)Public Function GetElementsByTagName(tagName As String) As XmlNodeList// You can use this method in JavaScript.
- tagName
- PlatForm::String String String String
The element name to find. The value "*" returns all elements in the document.
The collection of elements that match the specified name.
GetXml() GetXml() GetXml() GetXml()
Returns the XML representation of the node and all its descendants.
public : PlatForm::String GetXml()public string GetXml()Public Function GetXml() As string// You can use this method in JavaScript.
The XML representation of the node and all its descendants.
HasChildNodes() HasChildNodes() HasChildNodes() HasChildNodes()
Determines whether a node has children.
public : PlatForm::Boolean HasChildNodes()public bool HasChildNodes()Public Function HasChildNodes() As bool// You can use this method in JavaScript.
True if this node has children; otherwise false.
ImportNode(IXmlNode, Boolean) ImportNode(IXmlNode, Boolean) ImportNode(IXmlNode, Boolean) ImportNode(IXmlNode, Boolean)
Imports a node from another document to this document.
public : IXmlNode ImportNode(IXmlNode node, bool deep)public IXmlNode ImportNode(IXmlNode node, Boolean deep)Public Function ImportNode(node As IXmlNode, deep As Boolean) As IXmlNode// You can use this method in JavaScript.
- deep
- bool Boolean Boolean Boolean
If true, any children of node will be cloned as well. If false, no children of the node will be cloned.
Remarks
The returned node has no parent (the is null). The source node is not altered or removed from the original document; this method creates a new copy of the source node.
InsertBefore(IXmlNode, IXmlNode) InsertBefore(IXmlNode, IXmlNode) InsertBefore(IXmlNode, IXmlNode) InsertBefore(IXmlNode, IXmlNode)
Inserts a child node to the left of the specified node, or at the end of the child node list.
public : IXmlNode InsertBefore(IXmlNode newChild, IXmlNode referenceChild)public IXmlNode InsertBefore(IXmlNode newChild, IXmlNode referenceChild)Public Function InsertBefore(newChild As IXmlNode, referenceChild As IXmlNode) As IXmlNode// You can use this method in JavaScript.
The address of the new node to be inserted. The node passed here must be a valid child of the current XML DOM document node. For example, if the current node is an attribute, you cannot pass another attribute in the newChild parameter, because an attribute cannot have an attribute as a child. If newChild is a DOCUMENT_FRAGMENT node type, all its children are inserted in order before referenceChild.
If newChild is already in the tree, it is first removed before it is reinserted before the referenceChild node. Read-only nodes, such as NODE_DOCUMENT_TYPE and NODE_ENTITY nodes, cannot be passed in the newChild parameter.
The reference node. The node specified is where the newChild node is to be inserted to the left as the preceding sibling in the child list. The node passed here must be a either a child node of the current node or null. If the value is null, the newChild node is inserted at the end of the child list. If the referenceChild node is not a child of the current node, an error is returned.
LoadFromFileAsync(IStorageFile) LoadFromFileAsync(IStorageFile) LoadFromFileAsync(IStorageFile) LoadFromFileAsync(IStorageFile)
Asynchronously loads an XML document from the specified file. The document is parsed using the default parser settings.
public : static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile file)public static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile file)Public Static Function LoadFromFileAsync(file As IStorageFile) As IAsyncOperation( Of XmlDocument )// You can use this method in JavaScript.
The file from which to load the document.
The object that must be used to start the operation.
- See Also
LoadFromFileAsync(IStorageFile, XmlLoadSettings) LoadFromFileAsync(IStorageFile, XmlLoadSettings) LoadFromFileAsync(IStorageFile, XmlLoadSettings) LoadFromFileAsync(IStorageFile, XmlLoadSettings)
Asynchronously loads an XML document from the specified file. The document is parsed using the provided settings.
public : static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile file, XmlLoadSettings loadSettings)public static IAsyncOperation<XmlDocument> LoadFromFileAsync(IStorageFile file, XmlLoadSettings loadSettings)Public Static Function LoadFromFileAsync(file As IStorageFile, loadSettings As XmlLoadSettings) As IAsyncOperation( Of XmlDocument )// You can use this method in JavaScript.
The file from which to load the document.
- loadSettings
- XmlLoadSettings XmlLoadSettings XmlLoadSettings XmlLoadSettings
Settings for customizing parser behavior.
The object that must be used to start the operation.
- See Also
LoadFromUriAsync(Uri) LoadFromUriAsync(Uri) LoadFromUriAsync(Uri) LoadFromUriAsync(Uri)
Asynchronously loads an XML document from the specified location. The document is parsed using the default parser settings.
public : static IAsyncOperation<XmlDocument> LoadFromUriAsync(Uri uri)public static IAsyncOperation<XmlDocument> LoadFromUriAsync(Uri uri)Public Static Function LoadFromUriAsync(uri As Uri) As IAsyncOperation( Of XmlDocument )// You can use this method in JavaScript.
- uri
- Uri Uri Uri Uri
A URL that specifies the location of the XML file.
The object that must be used to start the operation.
- See Also
LoadFromUriAsync(Uri, XmlLoadSettings) LoadFromUriAsync(Uri, XmlLoadSettings) LoadFromUriAsync(Uri, XmlLoadSettings) LoadFromUriAsync(Uri, XmlLoadSettings)
Asynchronously loads an XML document from the specified location. The document is parsed using the provided settings.
public : static IAsyncOperation<XmlDocument> LoadFromUriAsync(Uri uri, XmlLoadSettings loadSettings)public static IAsyncOperation<XmlDocument> LoadFromUriAsync(Uri uri, XmlLoadSettings loadSettings)Public Static Function LoadFromUriAsync(uri As Uri, loadSettings As XmlLoadSettings) As IAsyncOperation( Of XmlDocument )// You can use this method in JavaScript.
- uri
- Uri Uri Uri Uri
A URL that specifies the location of the XML file.
- loadSettings
- XmlLoadSettings XmlLoadSettings XmlLoadSettings XmlLoadSettings
Customizes parser behavior.
An object that must be used to start the operation.
Remarks
This operation does not start until a call is made to the IAsyncOperation::StartOperation method.
- See Also
LoadXml(String) LoadXml(String) LoadXml(String) LoadXml(String)
Loads an XML document using the supplied string. The document is parsed using the default parser settings.
public : void LoadXml(PlatForm::String xml)public void LoadXml(String xml)Public Function LoadXml(xml As String) As void// You can use this method in JavaScript.
- xml
- PlatForm::String String String String
The XML string to load into this XML document object. This string can contain an entire XML document or a well-formed fragment.
- See Also
LoadXml(String, XmlLoadSettings) LoadXml(String, XmlLoadSettings) LoadXml(String, XmlLoadSettings) LoadXml(String, XmlLoadSettings)
Loads an XML document using the supplied string. The document is parsed using the settings provided.
public : void LoadXml(PlatForm::String xml, XmlLoadSettings loadSettings)public void LoadXml(String xml, XmlLoadSettings loadSettings)Public Function LoadXml(xml As String, loadSettings As XmlLoadSettings) As void// You can use this method in JavaScript.
- xml
- PlatForm::String String String String
The XML string to load into this XML document object. This string can contain an entire XML document or a well-formed fragment.
- loadSettings
- XmlLoadSettings XmlLoadSettings XmlLoadSettings XmlLoadSettings
The settings for parsing the document.
- See Also
LoadXmlFromBuffer(IBuffer) LoadXmlFromBuffer(IBuffer) LoadXmlFromBuffer(IBuffer) LoadXmlFromBuffer(IBuffer)
Loads an XML document using the buffer. The document is parsed using the default parser settings.
public : void LoadXmlFromBuffer(IBuffer buffer)public void LoadXmlFromBuffer(IBuffer buffer)Public Function LoadXmlFromBuffer(buffer As IBuffer) As void// You can use this method in JavaScript.
The buffer to load into this XML document object. This buffer can contain an entire XML document or a well-formed fragment.
- See Also
LoadXmlFromBuffer(IBuffer, XmlLoadSettings) LoadXmlFromBuffer(IBuffer, XmlLoadSettings) LoadXmlFromBuffer(IBuffer, XmlLoadSettings) LoadXmlFromBuffer(IBuffer, XmlLoadSettings)
Loads an XML document using the buffer. The document is parsed using the settings provided.
public : void LoadXmlFromBuffer(IBuffer buffer, XmlLoadSettings loadSettings)public void LoadXmlFromBuffer(IBuffer buffer, XmlLoadSettings loadSettings)Public Function LoadXmlFromBuffer(buffer As IBuffer, loadSettings As XmlLoadSettings) As void// You can use this method in JavaScript.
The buffer to load into this XML document object. This buffer can contain an entire XML document or a well-formed fragment.
- loadSettings
- XmlLoadSettings XmlLoadSettings XmlLoadSettings XmlLoadSettings
The settings for parsing the document.
- See Also
Normalize() Normalize() Normalize() Normalize()
Normalizes all descendant elements by combining two or more adjacent text nodes into one unified text node.
public : void Normalize()public void Normalize()Public Function Normalize() As void// You can use this method in JavaScript.
RemoveChild(IXmlNode) RemoveChild(IXmlNode) RemoveChild(IXmlNode) RemoveChild(IXmlNode)
Removes the specified child node from the list of children and returns it.
public : IXmlNode RemoveChild(IXmlNode childNode)public IXmlNode RemoveChild(IXmlNode childNode)Public Function RemoveChild(childNode As IXmlNode) As IXmlNode// You can use this method in JavaScript.
The child node to be removed from the list of children of this node.
ReplaceChild(IXmlNode, IXmlNode) ReplaceChild(IXmlNode, IXmlNode) ReplaceChild(IXmlNode, IXmlNode) ReplaceChild(IXmlNode, IXmlNode)
Replaces the specified old child node with the supplied new child node.
public : IXmlNode ReplaceChild(IXmlNode newChild, IXmlNode referenceChild)public IXmlNode ReplaceChild(IXmlNode newChild, IXmlNode referenceChild)Public Function ReplaceChild(newChild As IXmlNode, referenceChild As IXmlNode) As IXmlNode// You can use this method in JavaScript.
The new child that is to replace the old child. If null, the referenceChild parameter is removed without a replacement.
The old child that is to be replaced by the new child.
SaveToFileAsync(IStorageFile) SaveToFileAsync(IStorageFile) SaveToFileAsync(IStorageFile) SaveToFileAsync(IStorageFile)
Asynchronously saves an XML document to the specified file.
public : IAsyncAction SaveToFileAsync(IStorageFile file)public IAsyncAction SaveToFileAsync(IStorageFile file)Public Function SaveToFileAsync(file As IStorageFile) As IAsyncAction// You can use this method in JavaScript.
The file to save the document to.
The object that must be used to start the operation.
SelectNodes(String) SelectNodes(String) SelectNodes(String) SelectNodes(String)
Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes as an XmlNodeList.
public : XmlNodeList SelectNodes(PlatForm::String xpath)public XmlNodeList SelectNodes(String xpath)Public Function SelectNodes(xpath As String) As XmlNodeList// You can use this method in JavaScript.
- xpath
- PlatForm::String String String String
Specifies an XPath expression.
The collection of nodes selected by applying the given pattern-matching operation. If no nodes are selected, this method returns an empty collection.
SelectNodesNS(String, Object) SelectNodesNS(String, Object) SelectNodesNS(String, Object) SelectNodesNS(String, Object)
Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes as an XmlNodeList.
public : XmlNodeList SelectNodesNS(PlatForm::String xpath, PlatForm::Object namespaces)public XmlNodeList SelectNodesNS(String xpath, Object namespaces)Public Function SelectNodesNS(xpath As String, namespaces As Object) As XmlNodeList// You can use this method in JavaScript.
- xpath
- PlatForm::String String String String
Specifies an XPath expression.
- namespaces
- PlatForm::Object Object Object Object
Contains a string that specifies namespaces for use in XPath expressions when it is necessary to define new namespaces externally. Namespaces are defined in the XML style, as a space-separated list of namespace declaration attributes. You can use this property to set the default namespace as well.
The collection of nodes selected by applying the given pattern-matching operation. If no nodes are selected, returns an empty collection.
Remarks
Prefixes in the query are resolved using the specified namespace declarations.
SelectSingleNode(String) SelectSingleNode(String) SelectSingleNode(String) SelectSingleNode(String)
Applies the specified pattern-matching operation to this node's context and returns the first matching node.
public : IXmlNode SelectSingleNode(PlatForm::String xpath)public IXmlNode SelectSingleNode(String xpath)Public Function SelectSingleNode(xpath As String) As IXmlNode// You can use this method in JavaScript.
- xpath
- PlatForm::String String String String
Specifies an XPath expression.
SelectSingleNodeNS(String, Object) SelectSingleNodeNS(String, Object) SelectSingleNodeNS(String, Object) SelectSingleNodeNS(String, Object)
Applies the specified pattern-matching operation to this node's context and returns the first matching node.
public : IXmlNode SelectSingleNodeNS(PlatForm::String xpath, PlatForm::Object namespaces)public IXmlNode SelectSingleNodeNS(String xpath, Object namespaces)Public Function SelectSingleNodeNS(xpath As String, namespaces As Object) As IXmlNode// You can use this method in JavaScript.
- xpath
- PlatForm::String String String String
Specifies an XPath expression.
- namespaces
- PlatForm::Object Object Object Object
Contains a string that specifies the namespaces to use in XPath expressions when it is necessary to define new namespaces externally. Namespaces are defined in the XML style, as a space-separated list of namespace declaration attributes. You can use this property to set the default namespace as well.
The first node that matches the given pattern-matching operation. If no nodes match the expression, this method returns a null value.
Remarks
Prefixes in the query are resolved using the specified namespace declarations.