Click or drag to resize

GlobalErrorHandlerHandleError Method

The method that's get invoked if any unhandled exception raised in service Here you can do what ever logic you would like to. For example logging the exception details Here the return value indicates that the exception was handled or not Return true to stop exception propagation and system considers that the exception was handled properly else return false to abort the session

Namespace: VideoCatalogService
Assembly: VideoCatalogService (in VideoCatalogService.dll) Version: 9.0.9002.25764 (9.0.0.0)
Syntax
C#
public bool HandleError(
	Exception error
)

Parameters

error  Exception

Return Value

Boolean

Implements

IErrorHandlerHandleError(Exception)
See Also