protected virtual void newSoapException(SoapExceptionOccured e) { try { EventHandler <SoapExceptionOccured> handler = SoapExceptionListener; if (handler != null) { handler(this, e); } } catch (Exception ex) { ExceptionFire(new ExceptionOccured(ex)); } }
private void _Ship_SoapExceptionListener(object sender, SoapExceptionOccured e) { ExceptionFire(new ExceptionOccured(e.Exception)); }