adTempus API
ArcanaDevelopment.adTempus.ApplicationIntegration Namespace / IExecutionContext Interface / ShouldTerminate Property


In This Topic
    ShouldTerminate Property (IExecutionContext)
    In This Topic
    Indicates whether the operation has been terminated.
    Syntax
    'Declaration
     
    
    ReadOnly Property ShouldTerminate As Boolean
    bool ShouldTerminate {get;}
    property bool ShouldTerminate {
       bool get();
    }
    Remarks
    ShouldTerminate returns True if a termination request has been received for the operation. Consumers of this interface can poll ShouldTerminate during lengthy operations to detect termination. When termination has been requested, the operation should terminate as soon as possible.
    See Also