escapedString

escapedString — prepares a string for use with writeCommand (Java and C# only).

Synopsis

For Java:
String escapedString(str,  
 quoted); 
String str;
boolean quoted;
 
String escapedString(str,  
 quoted,  
 special_only); 
String str;
boolean quoted;
boolean special_only;
 
For C#:
String escapedString(str,  
 quoted); 
String str;
bool quoted;
 
String escapedString(str,  
 quoted,  
 special_only); 
String str;
bool quoted;
bool special_only;
 

Parameters

This has not yet been documented.

Returns

This has not yet been documented.

Description

This method prepares a string for use with writeCommand.

See Also

writeCommand