Class AsyncCompletedEventArgs<T>
Argument for asyncronus operation
Inheritance
System.Object
    AsyncCompletedEventArgs<T>
  Namespace: EPiServer
Assembly: EPiServer.dll
Version: 10.10.4Syntax
public class AsyncCompletedEventArgs<T> : AsyncCompletedEventArgsType Parameters
| Name | Description | 
|---|---|
| T | Determins the return value type | 
Constructors
AsyncCompletedEventArgs(Exception, Object, T)
Initializes a new instance of the AsyncCompletedEventArgs<T> class.
Declaration
public AsyncCompletedEventArgs(Exception e, object userState, T returnValue)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Exception | e | The e. | 
| System.Object | userState | Custom Data. | 
| T | returnValue | The return value. | 
Properties
ReturnValue
Gets or sets the return value of Type T.
Declaration
public T ReturnValue { get; set; }Property Value
| Type | Description | 
|---|---|
| T | The return value. | 
