System.IAsyncResult

Represents the status of an asynchronous operation.

See Also: IAsyncResult Members

Syntax

[System.Runtime.InteropServices.ComVisible(true)]
public interface IAsyncResult

Remarks

The IAsyncResult interface is implemented by classes containing methods that can operate asynchronously. It is the return type of methods that initiate an asynchronous operation, such as System.IO.FileStream.BeginRead(Byte[], int, int, AsyncCallback, object), and it is passed to methods that conclude an asynchronous operation, such as System.IO.FileStream.EndRead(IAsyncResult). IAsyncResult objects are also passed to methods invoked by AsyncCallback delegates when an asynchronous operation completes.

An object that supports the IAsyncResult interface stores state information for an asynchronous operation and provides a synchronization object to allow threads to be signaled when the operation completes.

Note:

The System.Runtime.Remoting.Messaging.AsyncResult class is the implementation of IAsyncResult that is returned by the BeginInvoke method when you use a delegate to call a method asynchronously.

For a detailed description of how the IAsyncResult interface is used, see the Calling Synchronous Methods Asynchronously topic.

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0