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