DelegateCompletionCallback Delegate
.NET Framework (current version)
Represents the method that is called when an ActivityDelegate completes.
Assembly: System.Activities (in System.Activities.dll)
public delegate void DelegateCompletionCallback( NativeActivityContext^ context, ActivityInstance^ completedInstance, IDictionary<String^, Object^>^ outArguments )
Parameters
- context
-
Type:
System.Activities::NativeActivityContext^
The execution environment of the activity handling the callback.
- completedInstance
-
Type:
System.Activities::ActivityInstance^
The completed activity instance of the ActivityDelegate handler.
- outArguments
-
Type:
System.Collections.Generic::IDictionary<String^, Object^>^
The output arguments of the completed ActivityDelegate.
The values in the outArguments dictionary are the T:System.Activities.ActivityDelegateParameter values of the ActivityDelegate that are assigned when the ActivityDelegate is invoked, keyed by P:System.Activities.ActivityDelegateParameter.Name.
.NET Framework
Available since 4.0
Available since 4.0
Show: