ImageGear .NET - Updated
destroy Method

ImageGear.Web.Isis Library > ImageGear.Web.Isis Namespace > ImGearIsisScannerSession class : destroy Method
Destroys the current session. Terminates all pending scan jobs.
Syntax
ASP.NET Ajax Javascript (Specification) 
function destroy( 
   callback : function
) : ImGearIsisOperationStatus;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfImGearIsisScannerSession.destroy(function);

Parameters

callback
Callback which is called when the session is destroyed.

Return Value

Example

The JavaScript code below demonstrates how to destroy a scanner session:

function destroyCallback(status) {
    if (status.get_status() !== ImageGear.Web.Isis.ImGearIsisStatus.Completed) {
        alert(status.get_statusMessage());
    }
}

scannerSession.destroy(destroyCallback);
Remarks

This is an asynchronous method.

See Also

Reference

ImGearIsisScannerSession class
ImGearIsisScannerSession Members