XmlTextWriter.XmlLang Property

Definition

Gets the current xml:lang scope.

public:
 virtual property System::String ^ XmlLang { System::String ^ get(); };
public override string? XmlLang { get; }
public override string XmlLang { get; }
member this.XmlLang : string
Public Overrides ReadOnly Property XmlLang As String

Property Value

The current xml:lang or null if there is no xml:lang in the current scope.

Remarks

Note

Starting with the .NET Framework 2.0, we recommend that you create XmlWriter instances by using the XmlWriter.Create method and the XmlWriterSettings class to take advantage of new functionality.

This property allows one component to find out what state another component has left the writer in. For example, perhaps one component wants to tell another which language help text to generate. The language information is communicated by writing an xml:lang attribute.

Applies to