SecurityElementStatic: Escape

Escape

Replaces the set of invalid XML characters in a string to their xml representations.



 Public Function Escape(
	  ByRef Text As String ) As String

Parameters

Text
[ByRef] String. The text containing the invalid XML characters.

Return Values

String -  The text with the valid XML representation.

Remarks

This replaces the following characters:

 "&" = &
 "<" = &lt;
 ">" = &gt;
 Double Quote = &quot;
 Single Quote = &apos;
 

See Also

Project CorLib Overview

Class SecurityElementStatic Overview