ServicesExceptionNotHandledEventArgs Class
Note: This API is now obsolete.
Provides data for the WorkflowRuntime::ServicesExceptionNotHandled event.
Namespace: System.Workflow.Runtime
Assembly: System.Workflow.Runtime (in System.Workflow.Runtime.dll)
The ServicesExceptionNotHandledEventArgs type exposes the following members.
| 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | 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.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.gif?cs-save-lang=1&cs-lang=cpp)
.gif?cs-save-lang=1&cs-lang=cpp)
Note