Okapi .NET Library

Routines.UnEscapeFromXML Method 

 [This is preliminary documentation and subject to change.]

Unescape special characters from an escaped XML string. This method handles only these characteers when they are in pre-defined character entity references and decimal NCRs forms.

[Visual Basic]
Shared Public Function UnEscapeFromXML( _ 
   ByVal p_sText As String _ 
) As String
[C#]
public static string UnEscapeFromXML(
   string p_sText
);
[C++]
public: static String* UnEscapeFromXML(
   String* p_sText
);
[JScript]
public static function UnEscapeFromXML(
   String p_sText
): String;

Parameters

p_sText
The text to un-escape.

Return Value

The un-escaped text result.

See Also

Routines Class | Okapi.Library.Base Namespace