Esempio n. 1
0
 internal void OnUnhandledException(WlProxy proxy, Exception exception)
 {
     UnhandledEventHandlerException?.Invoke(this, new UnhandledEventHandlerExceptionEventArgs(proxy, exception));
 }
Esempio n. 2
0
 public UnhandledEventHandlerExceptionEventArgs(WlProxy proxy, Exception exception)
 {
     Proxy     = proxy;
     Exception = exception;
 }