CIRCDCCState.getAbort Member
Syntax
object.getAbort();
Returns
Remarks
See Also
Source Code
function dccstate_getAbort()
{
if ((this.state != DCC_STATE_REQUESTED) &&
(this.state != DCC_STATE_ACCEPTED) &&
(this.state != DCC_STATE_CONNECTED))
{
throw "Can't abort at this point.";
}
this.state = DCC_STATE_ABORTED;
this.eventPump.addEvent(new CEvent(this.eventType, "abort",
this.owner, "onAbort"));
}