XmlSerializationReader.ToXmlQualifiedName(String) Method

Definition

Obtains an XmlQualifiedName from a name that may contain a prefix.

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

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

Parameters

value
String

A name that may contain a prefix.

Returns

An XmlQualifiedName that represents a namespace-qualified XML name.

Remarks

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

If a prefix is present, the ToXmlQualifiedName method looks up the associated namespace for the current XML document and places the value in the XmlQualifiedName object.

Applies to