Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
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.10.0 (in Microsoft.VisualStudio.Modeling.Sdk.10.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: System.String
The escaped string.
Return Value
Type: System.String
An unescaped string.
Remarks
An escaped string hides special characters. For example, & is unescaped and & is escaped.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.