XmlQueryOutput.WriteStartElementComputed 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
编写一个具有可基于以下项之一计算的名称的元素:前缀和命名空间 URI;前缀映射; XPathNavigator; 或 XmlQualifiedName.
重载
| 名称 | 说明 |
|---|---|
| WriteStartElementComputed(String, String) |
此 API 支持产品基础结构,不能在代码中直接使用。 写入一个元素,该元素的名称是从 |
| WriteStartElementComputed(String, Int32) |
此 API 支持产品基础结构,不能在代码中直接使用。 写入一个元素,该元素的名称是从 |
| WriteStartElementComputed(XPathNavigator) |
此 API 支持产品基础结构,不能在代码中直接使用。 写入一个元素,该元素的名称是从 |
| WriteStartElementComputed(XmlQualifiedName) |
此 API 支持产品基础结构,不能在代码中直接使用。 写入一个元素,该元素的名称是从 |
WriteStartElementComputed(String, String)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
写入一个元素,该元素的名称是从 prefix:localName 标记名称和一组前缀映射中计算得出的。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
void WriteStartElementComputed(System::String ^ tagName, System::String ^ ns);
public void WriteStartElementComputed(string tagName, string ns);
member this.WriteStartElementComputed : string * string -> unit
Public Sub WriteStartElementComputed (tagName As String, ns As String)
参数
- tagName
- String
包含标记名称的字符串。
- ns
- String
包含命名空间名称的字符串。
适用于
WriteStartElementComputed(String, Int32)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
写入一个元素,该元素的名称是从 prefix:localName 标记名称和一组前缀映射中计算得出的。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
void WriteStartElementComputed(System::String ^ tagName, int prefixMappingsIndex);
public void WriteStartElementComputed(string tagName, int prefixMappingsIndex);
member this.WriteStartElementComputed : string * int -> unit
Public Sub WriteStartElementComputed (tagName As String, prefixMappingsIndex As Integer)
参数
- tagName
- String
包含标记名称的字符串。
- prefixMappingsIndex
- Int32
适用于
WriteStartElementComputed(XPathNavigator)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
写入一个元素,该元素的名称是从 prefix:localName 标记名称和一组前缀映射中计算得出的。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
void WriteStartElementComputed(System::Xml::XPath::XPathNavigator ^ navigator);
public void WriteStartElementComputed(System.Xml.XPath.XPathNavigator navigator);
member this.WriteStartElementComputed : System.Xml.XPath.XPathNavigator -> unit
Public Sub WriteStartElementComputed (navigator As XPathNavigator)
参数
- navigator
- XPathNavigator
XPathNavigator 对象。
适用于
WriteStartElementComputed(XmlQualifiedName)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
写入一个元素,该元素的名称是从 prefix:localName 标记名称和一组前缀映射中计算得出的。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
void WriteStartElementComputed(System::Xml::XmlQualifiedName ^ name);
public void WriteStartElementComputed(System.Xml.XmlQualifiedName name);
member this.WriteStartElementComputed : System.Xml.XmlQualifiedName -> unit
Public Sub WriteStartElementComputed (name As XmlQualifiedName)
参数
- name
- XmlQualifiedName
XmlQualifiedName 包含名称的 。