Click or drag to resize

AsyncResultT Class

Represents the status of an asynchronous operation.
Inheritance Hierarchy
SystemObject
  Enkoni.FrameworkAsyncResultT

Namespace:  Enkoni.Framework
Assembly:  Enkoni.Framework (in Enkoni.Framework.dll) Version: 1.3.0.1
Syntax
public class AsyncResult<T> : IAsyncResult

Type Parameters

T
The type that is returned by the asynchronous operation.

The AsyncResultT type exposes the following members.

Constructors
  NameDescription
Public methodAsyncResultT
Initializes a new instance of the AsyncResultT class.
Top
Properties
  NameDescription
Public propertyAsyncState
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
Public propertyAsyncWaitHandle
Gets a WaitHandle that is used to wait for an asynchronous operation to complete.
Public propertyCompletedSynchronously
Gets a value indicating whether the asynchronous operation completed synchronously.
Public propertyIsCompleted
Gets a value indicating whether the asynchronous operation has completed.
Top
Methods
  NameDescription
Public methodEndInvoke
Ends the invocation by waiting for the wait handle to finish.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSetAsCompleted
Sets the status of the asynchronous call to completed.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also