XmlQueryOutput.WriteStartElementComputed Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes an element with a name that can be computed based on one of the following: the prefix and namespace-URI; the prefix mappings; XPathNavigator; or the XmlQualifiedName.
Overloads
WriteStartElementComputed(String, String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes an element with a name that is computed from a |
WriteStartElementComputed(String, Int32) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes an element with a name that is computed from a |
WriteStartElementComputed(XPathNavigator) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes an element with a name that is computed from a |
WriteStartElementComputed(XmlQualifiedName) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes an element with a name that is computed from a |
WriteStartElementComputed(String, String)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
Writes an element with a name that is computed from a prefix:localName
tag name and a set of prefix mappings.
This API supports the product infrastructure and is not intended to be used directly from your code.
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)
Parameters
- tagName
- String
String that contains the tag name.
- ns
- String
String that contains the namespace name.
Applies to
WriteStartElementComputed(String, Int32)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
Writes an element with a name that is computed from a prefix:localName
tag name and a set of prefix mappings.
This API supports the product infrastructure and is not intended to be used directly from your code.
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)
Parameters
- tagName
- String
String that contains the tag name.
Applies to
WriteStartElementComputed(XPathNavigator)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
Writes an element with a name that is computed from a prefix:localName
tag name and a set of prefix mappings.
This API supports the product infrastructure and is not intended to be used directly from your code.
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)
Parameters
- navigator
- XPathNavigator
XPathNavigator object.
Applies to
WriteStartElementComputed(XmlQualifiedName)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
Writes an element with a name that is computed from a prefix:localName
tag name and a set of prefix mappings.
This API supports the product infrastructure and is not intended to be used directly from your code.
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)
Parameters
- name
- XmlQualifiedName
XmlQualifiedName that contains the name.