VintaSoft Imaging .NET SDK 14.0: Documentation for Web developer
Vintasoft.Imaging Namespace / WebImageConverterJS type / abortConverting Methods / abortConverting(function,function) Property
Syntax Exceptions Remarks BrowserCompatibility SeeAlso
In This Topic
    abortConverting(function,function) Method
    In This Topic
    Sends an asynchronous request for aborting the active image file converting process.
    Syntax
    var instance = new Vintasoft.Imaging.WebImageConverterJS(updateTimeout, service);
    
    var value; // Type: Vintasoft.Shared.WebRequestJS
    
    // Parameters
    var successFunc; // Type: function
    var errorFunc; // Type: function
    
    value = instance.abortConverting(successFunc, errorFunc);
    
    
    function abortConverting(
    successFunc
    Function that will be executed if request is executed successfully.
    : Function,
    errorFunc
    Function that will be executed if request is failed.
    Here is function prototype "function __error(data)".
    The data parameter can be:
    1. An object with following properties:
      • errorMessage (string): Error message.
      • blocked (boolean): Indicates that the requested action is blocked by another request.
      if exception is catched inside web service.
    2. Otherwise, jqXHR object.
    : Function
    ) : WebRequestJS;

    Parameters

    successFunc
    Function that will be executed if request is executed successfully.
    errorFunc
    Function that will be executed if request is failed.
    Here is function prototype "function __error(data)".
    The data parameter can be:
    1. An object with following properties:
      • errorMessage (string): Error message.
      • blocked (boolean): Indicates that the requested action is blocked by another request.
      if exception is catched inside web service.
    2. Otherwise, jqXHR object.

    Return Value

    Request object.
    Exceptions
    ExceptionDescription
    Thrown if active image file convertingprocess does not exist.
    Remarks

    Before calling this method you must call the "get_IsStarted" to determine that converter does have active image file converting proces.

    Browser Compatibility
    56+
    45+
    11
    See Also