Enumerated type that defines how users will be notified of exceptions

Namespace:  Utilities
Assembly:  ExceptionLogger (in ExceptionLogger.dll) Version: 1.0.0.2 (1.0.0.2)

Collapse imageSyntax

C#
public enum NotificationType
Visual Basic (Declaration)
Public Enumeration NotificationType
Visual C++
public enum class NotificationType

Collapse imageMembers

Member nameDescription
Silent
Users will not be notified, exceptions will be automatically logged to the registered loggers
Inform
Users will be notified an exception has occurred, exceptions will be automatically logged to the registered loggers
Ask
Users will be notified an exception has occurred and will be asked if they want the exception logged

Collapse imageSee Also