XmlQueryOutput.WriteEndElementUnchecked 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 the end of the element. Well-formedness is assumed, so no additional checks are performed.
Overloads
WriteEndElementUnchecked(String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes the end of the element with local name. Well-formedness is assumed, so no additional checks are performed. |
WriteEndElementUnchecked(String, String, String) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes the end of the element with prefix, local name, and namespace. No checks are performed. |
WriteEndElementUnchecked(String)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
Writes the end of the element with local name. Well-formedness is assumed, so no additional checks are performed.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void WriteEndElementUnchecked(System::String ^ localName);
public void WriteEndElementUnchecked (string localName);
member this.WriteEndElementUnchecked : string -> unit
Public Sub WriteEndElementUnchecked (localName As String)
Parameters
- localName
- String
String that contains local name of element.
Applies to
WriteEndElementUnchecked(String, String, String)
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
- Source:
- XmlQueryOutput.cs
Writes the end of the element with prefix, local name, and namespace. No checks are performed.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
void WriteEndElementUnchecked(System::String ^ prefix, System::String ^ localName, System::String ^ ns);
public void WriteEndElementUnchecked (string prefix, string localName, string ns);
member this.WriteEndElementUnchecked : string * string * string -> unit
Public Sub WriteEndElementUnchecked (prefix As String, localName As String, ns As String)
Parameters
- prefix
- String
String that contains element prefix.
- localName
- String
String that contains local name of element.
- ns
- String
String that contains namespace name.