FaultCallback Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.