XmlSerializationWriter.FromXmlQualifiedName Method

Definition

Produces an XML qualified name, with invalid characters replaced by escape sequences.

Overloads

FromXmlQualifiedName(XmlQualifiedName, Boolean)

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

Produces a string that can be written as an XML qualified name, with invalid characters replaced by escape sequences.

FromXmlQualifiedName(XmlQualifiedName)

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

Returns an XML qualified name, with invalid characters replaced by escape sequences.

FromXmlQualifiedName(XmlQualifiedName, Boolean)

Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs

Produces a string that can be written as an XML qualified name, with invalid characters replaced by escape sequences.

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

protected:
 System::String ^ FromXmlQualifiedName(System::Xml::XmlQualifiedName ^ xmlQualifiedName, bool ignoreEmpty);
protected string? FromXmlQualifiedName (System.Xml.XmlQualifiedName? xmlQualifiedName, bool ignoreEmpty);
protected string FromXmlQualifiedName (System.Xml.XmlQualifiedName xmlQualifiedName, bool ignoreEmpty);
member this.FromXmlQualifiedName : System.Xml.XmlQualifiedName * bool -> string
Protected Function FromXmlQualifiedName (xmlQualifiedName As XmlQualifiedName, ignoreEmpty As Boolean) As String

Parameters

xmlQualifiedName
XmlQualifiedName

An XmlQualifiedName that represents the XML to be written.

ignoreEmpty
Boolean

true to ignore empty spaces in the string; otherwise, false.

Returns

An XML qualified name, with invalid characters replaced by escape sequences.

Applies to

FromXmlQualifiedName(XmlQualifiedName)

Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs
Source:
XmlSerializationWriter.cs

Returns an XML qualified name, with invalid characters replaced by escape sequences.

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

protected:
 System::String ^ FromXmlQualifiedName(System::Xml::XmlQualifiedName ^ xmlQualifiedName);
protected string? FromXmlQualifiedName (System.Xml.XmlQualifiedName? xmlQualifiedName);
protected string FromXmlQualifiedName (System.Xml.XmlQualifiedName xmlQualifiedName);
member this.FromXmlQualifiedName : System.Xml.XmlQualifiedName -> string
Protected Function FromXmlQualifiedName (xmlQualifiedName As XmlQualifiedName) As String

Parameters

xmlQualifiedName
XmlQualifiedName

An XmlQualifiedName that represents the XML to be written.

Returns

An XML qualified name, with invalid characters replaced by escape sequences.

Remarks

The protected members of XmlSerializationWriter are intended for use only by derived classes that are used internally within the .NET Framework XML serialization infrastructure.

Applies to