AverageSubCalculationProgressCancellationPending Property  | 
 
            Gets a value indicating whether cancellation of the calculation is requested.
            If this returns true, the calculation will stop as soon as possible.
            
 
    Namespace: 
   AGI.Foundation.Infrastructure
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool CancellationPending { get; }Public ReadOnly Property CancellationPending As Boolean
	Get
public:
property bool CancellationPending {
	bool get ();
}member CancellationPending : bool with get
Property Value
Type: 
Boolean
Remarks
            This method will not necessarily be called in the same thread that initiated
            the calculation, nor is it guaranteed to be called in the same thread
            each time it is called.  However, a single calculation will
            not call this method in multiple threads simultaneously.
            
See Also