 | ServerGeneralError Event |
Event triggered when a general error happens on the processing
Namespace:
SMTPRouter
Assembly:
SMTPRouter (in SMTPRouter.dll) Version: 1.0.0.4
Syntaxpublic event EventHandler<GeneralErrorEventArgs> GeneralError
Public Event GeneralError As EventHandler(Of GeneralErrorEventArgs)
Dim instance As Server
Dim handler As EventHandler(Of GeneralErrorEventArgs)
AddHandler instance.GeneralError, handler
public:
event EventHandler<GeneralErrorEventArgs^>^ GeneralError {
void add (EventHandler<GeneralErrorEventArgs^>^ value);
void remove (EventHandler<GeneralErrorEventArgs^>^ value);
}Value
Type:
SystemEventHandlerGeneralErrorEventArgs
RemarksUsually general errors stop the processing so it's important to handle this event
See Also