CIRCDCCFileTransfer.dispose Member

Syntax

object.dispose();

Returns

Remarks

See Also

Source Code

function dfile_dispose()
{
if (this.connection)
{
// close is for the server socket, disconnect for the client socket.
this.connection.close();
this.connection.disconnect();
}
if (this.localFile)
this.localFile.close();
this.connection = null;
this.localFile = null;
this.filestream = null;
}