FaultCallback Delegate

Definition

Represents the method that is called when a scheduled activity or one of its children enters the Faulted state.

public delegate void FaultCallback(NativeActivityFaultContext ^ faultContext, Exception ^ propagatedException, ActivityInstance ^ propagatedFrom);
public delegate void FaultCallback(NativeActivityFaultContext faultContext, Exception propagatedException, ActivityInstance propagatedFrom);
type FaultCallback = delegate of NativeActivityFaultContext * Exception * ActivityInstance -> unit
Public Delegate Sub FaultCallback(faultContext As NativeActivityFaultContext, propagatedException As Exception, propagatedFrom As ActivityInstance)

Parameters

faultContext
NativeActivityFaultContext

The NativeActivityFaultContext provided for inspecting the workflow fault.

propagatedException
Exception

The exception that caused the fault.

propagatedFrom
ActivityInstance

The activity that threw the exception and generated the fault.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to