XmlCDataSection
XmlCDataSection
XmlCDataSection
XmlCDataSection
Class
Definition
Represents a CDATA section of an XML document.
public : sealed class XmlCDataSection : IXmlCDataSection, IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer, IXmlTextpublic sealed class XmlCDataSection : IXmlCDataSection, IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer, IXmlTextPublic NotInheritable Class XmlCDataSection Implements IXmlCDataSection, IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer, IXmlText// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
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. This property always returns NULL.
public : XmlNodeList ChildNodes { get; }public XmlNodeList ChildNodes { get; }Public ReadOnly Property ChildNodes As XmlNodeList// You can use this property in JavaScript.
This property always returns NULL.
Data Data Data Data
Gets or sets the node data depending on the node type.
public : PlatForm::String Data { get; set; }public string Data { get; set; }Public ReadWrite Property Data As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The node data.
FirstChild FirstChild FirstChild FirstChild
Gets the first child node. This property always returns NULL.
public : IXmlNode FirstChild { get; }public IXmlNode FirstChild { get; }Public ReadOnly Property FirstChild As IXmlNode// You can use this property in JavaScript.
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.
LastChild LastChild LastChild LastChild
Gets the last child node. This property always returns NULL because the CDataSection does not have children.
public : IXmlNode LastChild { get; }public IXmlNode LastChild { get; }Public ReadOnly Property LastChild As IXmlNode// You can use this property in JavaScript.
Length Length Length Length
Gets the length of the data, in Unicode characters.
public : unsigned int Length { get; }public uint Length { get; }Public ReadOnly Property Length As uint// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
The length of the data, in Unicode characters.
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.
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.
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.
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)
This method is not applicable to this class. The CDataSection does not have children. This method will throw an exception.
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.
AppendData(String) AppendData(String) AppendData(String) AppendData(String)
Appends the supplied string to the existing string data.
public : void AppendData(PlatForm::String data)public void AppendData(String data)Public Function AppendData(data As String) As void// You can use this method in JavaScript.
- data
- PlatForm::String String String String
The data to be appended to the existing string.
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.
DeleteData(UInt32, UInt32) DeleteData(UInt32, UInt32) DeleteData(UInt32, UInt32) DeleteData(UInt32, UInt32)
Deletes specified data.
public : void DeleteData(unsigned int offset, unsigned int count)public void DeleteData(UInt32 offset, UInt32 count)Public Function DeleteData(offset As UInt32, count As UInt32) As void// You can use this method in JavaScript.
- offset
- unsigned int UInt32 UInt32 UInt32
The offset, in characters, at which to start deleting the string data.
- count
- unsigned int UInt32 UInt32 UInt32
The number of characters to delete.
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. The CDataSection does not have children. This method always returns false.
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. This method always returns false.
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. This method is not applicable to this class and will throw an exception.
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.
InsertData(UInt32, String) InsertData(UInt32, String) InsertData(UInt32, String) InsertData(UInt32, String)
Inserts a string at the specified offset.
public : void InsertData(unsigned int offset, PlatForm::String data)public void InsertData(UInt32 offset, String data)Public Function InsertData(offset As UInt32, data As String) As void// You can use this method in JavaScript.
- offset
- unsigned int UInt32 UInt32 UInt32
The offset, in characters, at which to insert the supplied string data.
- data
- PlatForm::String String String String
The data to be inserted into the existing string.
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. This method is not applicable to this class as the CDataSection does not have children. This method will throw an exception.
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. This method is not applicable to this class as the CDataSection does not have children. This method will throw an exception.
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.
ReplaceData(UInt32, UInt32, String) ReplaceData(UInt32, UInt32, String) ReplaceData(UInt32, UInt32, String) ReplaceData(UInt32, UInt32, String)
Replaces the specified number of characters with the supplied string.
public : void ReplaceData(unsigned int offset, unsigned int count, PlatForm::String data)public void ReplaceData(UInt32 offset, UInt32 count, String data)Public Function ReplaceData(offset As UInt32, count As UInt32, data As String) As void// You can use this method in JavaScript.
- offset
- unsigned int UInt32 UInt32 UInt32
The offset, in characters, at which to start replacing string data.
- count
- unsigned int UInt32 UInt32 UInt32
The number of characters to replace.
- data
- PlatForm::String String String String
The new data that replaces the old string data.
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. This method is not applicable to this class and will throw an exception.
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. This method is not applicable to this class and will throw an exception.
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 expresssion.
- 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. This method is not applicable to this class and will throw an exception.
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. This method is not applicable to this class and will throw an exception.
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.
SplitText(UInt32) SplitText(UInt32) SplitText(UInt32) SplitText(UInt32)
Splits this text node into two text nodes at the specified offset and inserts the new text node into the tree as a sibling that immediately follows this node.
public : IXmlText SplitText(unsigned int offset)public IXmlText SplitText(UInt32 offset)Public Function SplitText(offset As UInt32) As IXmlText// You can use this method in JavaScript.
- offset
- unsigned int UInt32 UInt32 UInt32
The number of characters at which to split this text node into two nodes, starting from zero.
SubstringData(UInt32, UInt32) SubstringData(UInt32, UInt32) SubstringData(UInt32, UInt32) SubstringData(UInt32, UInt32)
Retrieves a substring of the full string from the specified range.
public : PlatForm::String SubstringData(unsigned int offset, unsigned int count)public string SubstringData(UInt32 offset, UInt32 count)Public Function SubstringData(offset As UInt32, count As UInt32) As string// You can use this method in JavaScript.
- offset
- unsigned int UInt32 UInt32 UInt32
Specifies the offset, in characters, from the beginning of the string. An offset of zero indicates copying from the start of the data.
- count
- unsigned int UInt32 UInt32 UInt32
Specifies the number of characters to retrieve from the specified offset.
The returned substring.