ServicesExceptionNotHandledEventArgs Class

Definition

Caution

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

Provides data for the ServicesExceptionNotHandled event.

public ref class ServicesExceptionNotHandledEventArgs sealed : EventArgs
public sealed class ServicesExceptionNotHandledEventArgs : EventArgs
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public sealed class ServicesExceptionNotHandledEventArgs : EventArgs
type ServicesExceptionNotHandledEventArgs = class
    inherit EventArgs
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type ServicesExceptionNotHandledEventArgs = class
    inherit EventArgs
Public NotInheritable Class ServicesExceptionNotHandledEventArgs
Inherits EventArgs
Inheritance
ServicesExceptionNotHandledEventArgs
Attributes

Remarks

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.

Properties

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.

Methods

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()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to