Event which is fired when an unhandled failure occurs within the DistributedUnitOfWorkService allowing you to inspect any exceptions that occur.

Namespace:  Mindscape.LightSpeed.ServiceModel
Assembly:  Mindscape.LightSpeed.ServiceModel (in Mindscape.LightSpeed.ServiceModel.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
event EventHandler<ExceptionEventArgs> GeneralFailureOccurred
Visual Basic (Declaration)
Event GeneralFailureOccurred As EventHandler(Of ExceptionEventArgs)

Remarks

This event is fired by the service to allow you to handle any exceptions as all service operations will throw a standard exception back to the client.

See Also