示例#1
0
        void Contact_ServiceOperationFailed(object sender, ServiceOperationFailedEventArgs e)
        {
            string info = e.Exception.Message;

            SetStatus("ServiceOperationFailed  " + e.Method + ": " + info + sender.GetType().Name);

            ContactService_ServiceOperationFailed(this, e);
        }
示例#2
0
 void  client_ContactService_ServiceOperationFailed(MSNClient m, ServiceOperationFailedEventArgs e)
 {
     if (m.addto.Length == 0)
     {
         return;
     }
     if (e.Exception.Message.ToLower().Contains("quota limit reached"))
     {
         finish(m);
     }
 }
示例#3
0
 void ContactService_ServiceOperationFailed(object sender, ServiceOperationFailedEventArgs e)
 {
     throw new NotImplementedException();
 }
示例#4
0
 void client_ContactService_ServiceOperationFailed(MSNClient m, ServiceOperationFailedEventArgs e)
 {
     if (m.addto.Length == 0) return;
     if (e.Exception.Message.ToLower().Contains("quota limit reached"))
     {
         finish(m);
     }
 }
示例#5
0
 void ServiceOperationFailed(object sender, ServiceOperationFailedEventArgs e)
 {
     Trace.WriteLineIf(Settings.TraceSwitch.TraceError, e.Method + ": " + e.Exception.ToString(), sender.GetType().Name);
 }
示例#6
0
 void ContactService_ServiceOperationFailed(object sender, ServiceOperationFailedEventArgs e)
 {
     throw new NotImplementedException();
 }
示例#7
0
 void client_ContactService_ServiceOperationFailed(MSNClient m, ServiceOperationFailedEventArgs e)
 {
 }
示例#8
0
 void ServiceOperationFailed(object sender, ServiceOperationFailedEventArgs e)
 {
     string info = e.Exception.Message;
     SetStatus("ServiceOperationFailed  " + e.Method + ": " + info + sender.GetType().Name);
 }
示例#9
0
 void client_ContactService_ServiceOperationFailed(MSNClient m, ServiceOperationFailedEventArgs e)
 {
 }
示例#10
0
 protected virtual void OperationFailed(object sender, ServiceOperationFailedEventArgs e)
 {
     Log.Warn("Operation failed", e.Exception);
 }