Rhino.ScriptRuntime.EscapeTextValue C# (CSharp) Method

EscapeTextValue() public static method

Escapes the reserved characters in a value of a text node
public static EscapeTextValue ( object value, Context cx ) : string
value object Unescaped text
cx Context
return string
		public static string EscapeTextValue(object value, Context cx)
		{
			XMLLib xmlLib = CurrentXMLLib(cx);
			return xmlLib.EscapeTextValue(value);
		}
ScriptRuntime