Exemplo n.º 1
0
 public void EndClose(IAsyncResult result)
 {
     if (result is DummyCloseAsyncResult)
     {
         DummyCloseAsyncResult.End(result);
     }
     else
     {
         bool throwing = true;
         try
         {
             OperationWithTimeoutComposer.EndComposeAsyncOperations(result);
             throwing = false;
         }
         finally
         {
             if (throwing)
             {
                 AbortCore();
             }
         }
     }
 }
Exemplo n.º 2
0
 public void EndOpen(IAsyncResult result)
 {
     OperationWithTimeoutComposer.EndComposeAsyncOperations(result);
     this.SetBufferManager();
 }
Exemplo n.º 3
0
 public void EndOpen(IAsyncResult result)
 {
     OperationWithTimeoutComposer.EndComposeAsyncOperations(result);
 }