Click or drag to resize
ICancellableAsyncResult Interface

Namespace: PatchKit.Async
Assembly: PatchKit.Async (in PatchKit.Async.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public interface ICancellableAsyncResult : IAsyncResult

The ICancellableAsyncResult type exposes the following members.

Properties
  NameDescription
Public propertyAsyncState
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
(Inherited from IAsyncResult.)
Public propertyAsyncWaitHandle
Gets a WaitHandle that is used to wait for an asynchronous operation to complete.
(Inherited from IAsyncResult.)
Public propertyCanBeCancelled
Determines whether operation can be cancelled in it's current state.
Public propertyCompletedSynchronously
Gets a value that indicates whether the asynchronous operation completed synchronously.
(Inherited from IAsyncResult.)
Public propertyIsCancelled
True if operation has completed but it was cancelled. Otherwise false.
Public propertyIsCompleted
Gets a value that indicates whether the asynchronous operation has completed.
(Inherited from IAsyncResult.)
Top
Methods
  NameDescription
Public methodCancel
Cancels the async operation.
Top
See Also