CBSConnection.sendDataNow Member
Syntax
object.sendDataNow(str);
Arguments
Argument | Summary |
---|---|
str |
Returns
Remarks
See Also
Source Code
function bc_senddatanow(str)
{
var rv = false;
try
{
if (this.binaryMode)
this._sOutputStream.writeBytes(str, str.length);
else
this._sOutputStream.write(str, str.length);
rv = true;
}
catch (ex)
{
dd ("*** Caught " + ex + " while sending.");
this.disconnect();
throw (ex);
}
return rv;
}