ICancelableAsyncResult Interface
Represents the state of a cancelable asynchronous operation.
Namespace: Microsoft.TeamFoundation.Client
Assembly: Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public Interface ICancelableAsyncResult _
Inherits IAsyncResult
public interface ICancelableAsyncResult : IAsyncResult
public interface class ICancelableAsyncResult : IAsyncResult
type ICancelableAsyncResult =
interface
interface IAsyncResult
end
public interface ICancelableAsyncResult extends IAsyncResult
The ICancelableAsyncResult type exposes the following members.
Properties
Name | Description | |
---|---|---|
AsyncState | Gets a user-defined object that qualifies or contains information about an asynchronous operation. (Inherited from IAsyncResult.) | |
AsyncWaitHandle | Gets a WaitHandle that is used to wait for an asynchronous operation to complete. (Inherited from IAsyncResult.) | |
CompletedSynchronously | Gets a value that indicates whether the asynchronous operation completed synchronously. (Inherited from IAsyncResult.) | |
IsCanceled | Gets the status of the cancellation. | |
IsCompleted | Gets a value that indicates whether the asynchronous operation has completed. (Inherited from IAsyncResult.) |
Top
Methods
Name | Description | |
---|---|---|
Cancel | Attempts to cancel the asynchronous operation. |
Top