XmlQueryOutput.WriteStartAttributeUnchecked Method

Definition

Writes the start of the attribute. There is an assumption of well-formedness, so no additional checks are performed.

Overloads

WriteStartAttributeUnchecked(String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Writes the start of the attribute with local name.

WriteStartAttributeUnchecked(String, String, String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Writes the start of the attribute with prefix, local name and ns without checks for well-formedness.

WriteStartAttributeUnchecked(String)

Source:
XmlQueryOutput.cs
Source:
XmlQueryOutput.cs
Source:
XmlQueryOutput.cs

Writes the start of the attribute with local name.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 void WriteStartAttributeUnchecked(System::String ^ localName);
public void WriteStartAttributeUnchecked (string localName);
member this.WriteStartAttributeUnchecked : string -> unit
Public Sub WriteStartAttributeUnchecked (localName As String)

Parameters

localName
String

String that contains the local name of the attribute.

Applies to

WriteStartAttributeUnchecked(String, String, String)

Source:
XmlQueryOutput.cs
Source:
XmlQueryOutput.cs
Source:
XmlQueryOutput.cs

Writes the start of the attribute with prefix, local name and ns without checks for well-formedness.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 void WriteStartAttributeUnchecked(System::String ^ prefix, System::String ^ localName, System::String ^ ns);
public void WriteStartAttributeUnchecked (string prefix, string localName, string ns);
member this.WriteStartAttributeUnchecked : string * string * string -> unit
Public Sub WriteStartAttributeUnchecked (prefix As String, localName As String, ns As String)

Parameters

prefix
String

String that contains the prefix of the namespace.

localName
String

String that contains the local name of the attribute.

ns
String

String that contains the namespace.

Applies to