Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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: StringThe escaped string.
Return Value
Type: 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.