EntryPoint
Show / Hide Table of Contents

Interface IUserFacingExceptionHandler

Syntax
public interface IUserFacingExceptionHandler

Properties

| Improve this Doc

UserFacingExceptionThrown

Set True whenever a UserFacingException bubbles up and is handled by the instance implementing this interface

Declaration
bool UserFacingExceptionThrown { get; set; }
Property Value
Type Description
System.Boolean

Methods

| Improve this Doc

OnUserFacingException(UserFacingException, String)

Called whenever a UserFacingException bubbles up and is handled by the instance implementing this interface

Declaration
void OnUserFacingException(UserFacingException e, string message)
Parameters
Type Name Description
UserFacingException e

thrown exception

System.String message

a message to display to the user

  • Improve this Doc