XmlCDataSection.SelectNodesNS(String, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的模式比對作業套用至這個節點的內容,並將相符節點的清單當做 XmlNodeList傳回。 這個方法不適用於這個類別,而且會擲回例外狀況。
public:
virtual XmlNodeList ^ SelectNodesNS(Platform::String ^ xpath, Platform::Object ^ namespaces) = SelectNodesNS;
XmlNodeList SelectNodesNS(winrt::hstring const& xpath, IInspectable const& namespaces);
public XmlNodeList SelectNodesNS(string xpath, object namespaces);
function selectNodesNS(xpath, namespaces)
Public Function SelectNodesNS (xpath As String, namespaces As Object) As XmlNodeList
參數
- xpath
-
String
Platform::String
winrt::hstring
指定 XPath 標記法。
- namespaces
-
Object
Platform::Object
IInspectable
包含字串,指定在外部定義新命名空間時,要在 XPath 運算式中使用的命名空間。 命名空間是以 XML 樣式定義,以空格分隔的命名空間宣告屬性清單。 您也可以使用這個屬性來設定預設命名空間。
傳回
套用指定的模式比對作業所選取的節點集合。 如果未選取任何節點,則會傳回空集合。
實作
M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectNodesNS(System.String,System.Object)
M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectNodesNS(Platform::String,Platform::Object)
M:Windows.Data.Xml.Dom.IXmlNodeSelector.SelectNodesNS(winrt::hstring,IInspectable)
範例
var nodes = node.SelectNodesNS("//mux:TreeView", "xmlns:mux='using:Microsoft.UI.Xaml.Controls'");
auto nodes = node.SelectNodesNS(L"//mux:TreeView", winrt::box_value(L"xmlns:mux='using:Microsoft.UI.Xaml.Controls'"));
備註
查詢中的前置詞會使用指定的命名空間宣告來解析。