XmlSerializationWriter.FromXmlName(String) Method

Definition

Encodes a valid XML name by replacing characters that are not valid with escape sequences.

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

protected:
 static System::String ^ FromXmlName(System::String ^ name);
protected static string? FromXmlName (string? name);
protected static string FromXmlName (string name);
static member FromXmlName : string -> string
Protected Shared Function FromXmlName (name As String) As String

Parameters

name
String

A string to be used as an XML name.

Returns

An encoded string.

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.

The FromXmlName method is static.

Applies to