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