SerializationUtilities.UnescapeXmlString Method

Note: This API is now obsolete.

Converts an escaped string to an unescaped string read from XML.

Namespace:  Microsoft.VisualStudio.Modeling
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)

Syntax

'Declaration
<ObsoleteAttribute("This method is no longer required and shouldn't be used by the latest templates")> _
Public Shared Function UnescapeXmlString ( _
    input As String _
) As String
[ObsoleteAttribute("This method is no longer required and shouldn't be used by the latest templates")]
public static string UnescapeXmlString(
    string input
)
[ObsoleteAttribute(L"This method is no longer required and shouldn't be used by the latest templates")]
public:
static String^ UnescapeXmlString(
    String^ input
)
[<ObsoleteAttribute("This method is no longer required and shouldn't be used by the latest templates")>]
static member UnescapeXmlString : 
        input:string -> string
public static function UnescapeXmlString(
    input : String
) : String

Parameters

  • input
    Type: String

    The escaped string.

Return Value

Type: String
An unescaped string.

Remarks

An escaped string hides special characters. For example, &amp is unescaped and & is escaped.

.NET Framework Security

See Also

Reference

SerializationUtilities Class

Microsoft.VisualStudio.Modeling Namespace