Try our conversational search powered by Generative AI!

Class AsyncCompletedEventArgs<T>

Argument for asyncronus operation

Inheritance
System.Object
AsyncCompletedEventArgs<T>
Namespace: EPiServer
Assembly: EPiServer.Cms.AspNet.dll
Version: 11.20.7
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