Beispiel #1
0
 /// <summary>
 /// First calls the ChatProxy.Leave (ClientBase&ltIChat&gt.Leave())
 /// method, and finally calls the AbortProxy() method
 /// </summary>
 public void ExitChatSession()
 {
     try
     {
         proxy.Leave();
     }
     catch { }
     finally
     {
         AbortProxy();
     }
 }
Beispiel #2
0
 private void ExitChatSession()
 {
     try
     {
         proxy.Leave();
     }
     catch { }
     finally
     {
         AbortProxyAndUpdateUI();
     }
 }