PageTheme.XPathSelect 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
针对主题外观文件中的基于 XML 的数据提供运行时数据绑定,并返回实现 IEnumerable 接口的节点集合。
重载
XPathSelect(String) |
计算 XPath 数据绑定表达式,并返回实现 IEnumerable 接口的节点集合。 |
XPathSelect(String, IXmlNamespaceResolver) |
使用用于命名空间解析的指定前缀和命名空间映射计算 XPath 数据绑定表达式,并返回实现 IEnumerable 接口的节点集合。 |
XPathSelect(String)
计算 XPath 数据绑定表达式,并返回实现 IEnumerable 接口的节点集合。
protected:
System::Collections::IEnumerable ^ XPathSelect(System::String ^ xPathExpression);
protected System.Collections.IEnumerable XPathSelect (string xPathExpression);
member this.XPathSelect : string -> System.Collections.IEnumerable
Protected Function XPathSelect (xPathExpression As String) As IEnumerable
参数
- xPathExpression
- String
要计算的 XPath 表达式。 有关详细信息,请参阅 XPathBinder。
返回
一个 IEnumerable 节点列表。
注解
XPathSelect方法使用 GetDataItem 方法解析 IXPathNavigable 计算表达式时所依据的对象引用。
另请参阅
适用于
XPathSelect(String, IXmlNamespaceResolver)
使用用于命名空间解析的指定前缀和命名空间映射计算 XPath 数据绑定表达式,并返回实现 IEnumerable 接口的节点集合。
protected:
System::Collections::IEnumerable ^ XPathSelect(System::String ^ xPathExpression, System::Xml::IXmlNamespaceResolver ^ resolver);
protected System.Collections.IEnumerable XPathSelect (string xPathExpression, System.Xml.IXmlNamespaceResolver resolver);
member this.XPathSelect : string * System.Xml.IXmlNamespaceResolver -> System.Collections.IEnumerable
Protected Function XPathSelect (xPathExpression As String, resolver As IXmlNamespaceResolver) As IEnumerable
参数
- xPathExpression
- String
要计算的 XPath 表达式。 有关详细信息,请参阅 XPathBinder。
- resolver
- IXmlNamespaceResolver
一组用于命名空间解析的前缀和命名空间映射。
返回
一个 IEnumerable 节点列表。
注解
XPathSelect方法使用 GetDataItem 方法解析 IXPathNavigable 计算表达式时所依据的对象引用。