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.4.0.1000)
Syntaxpublic CancellationToken CancellationToken { get; }
Public ReadOnly Property CancellationToken As CancellationToken
Get
public:
property CancellationToken CancellationToken {
CancellationToken get ();
}
member CancellationToken : CancellationToken with get
Property Value
Type:
CancellationToken
Exceptions
Remarks 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