London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class AsyncCompletedEventArgs<T>

Argument for asyncronus operation

Inheritance
System.Object
AsyncCompletedEventArgs<T>
Namespace: EPiServer
Assembly: EPiServer.dll
Version: 10.10.4
Syntax
public class AsyncCompletedEventArgs<T> : AsyncCompletedEventArgs
Type 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.

Extension Methods