ExportRequestCancellationToken Property

Gets the cancellation token associated with the request operation.

Namespace:  Dundas.BI.Export
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
public CancellationToken CancellationToken { get; }

Property Value

Type: CancellationToken
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe export request has completed.
Remarks
Note Note
It is only safe to access this property before the export request completes (e.g. for registering callbacks to the cancellation token). To check if cancellation has been requested, use the IsCancellationRequested property on ExportRequest.
See Also