XmlQueryOutput.WriteEndElementUnchecked Method

Definition

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)

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)

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.

Applies to