ServicesExceptionNotHandledEventArgs Class
Provides data for the WorkflowRuntime::ServicesExceptionNotHandled event.
Assembly: System.Workflow.Runtime (in System.Workflow.Runtime.dll)
| Name | Description | |
|---|---|---|
![]() | Exception | Gets the exception that could not be handled by the service. |
![]() | WorkflowInstanceId | Gets the Guid of the workflow instance associated with the unhandled exception. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
Note |
|---|
This material discusses types and namespaces that are obsolete. For more information, see Deprecated Types in Windows Workflow Foundation 4.5. |
When a service that derives from the WorkflowRuntimeService class encounters an exception that it cannot handle, it can call the RaiseServicesExceptionNotHandledEvent method to tell the workflow runtime engine to raise the WorkflowRuntime::ServicesExceptionNotHandled event. The service passes the Guid of the workflow instance and the Exception associated with this event in its call to RaiseServicesExceptionNotHandledEvent. The workflow runtime engine encapsulates these parameters in a ServicesExceptionNotHandledEventArgs and raises the WorkflowRuntime::ServicesExceptionNotHandled event. From inside of a subscriber to the WorkflowRuntime::ServicesExceptionNotHandled event, you can read the WorkflowInstanceId property and the Exception property to get the information associated with a particular WorkflowRuntime::ServicesExceptionNotHandled event.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


