bool OnRequestChannelCreated()
            {
                IAsyncResult result = rstChannel.BeginOpen(timeoutHelper.RemainingTime(), openChannelCallback, this);

                if (!result.CompletedSynchronously)
                {
                    return(false);
                }
                rstChannel.EndOpen(result);
                return(this.OnRequestChannelOpened());
            }
 public void EndOpen(IAsyncResult result)
 {
     _innerChannel.EndOpen(result);
 }
 protected override void OnEndOpen(IAsyncResult result)
 {
     _innerChannel.EndOpen(result);
 }
Exemple #4
0
 protected override void OnEndOpen(IAsyncResult result)
 {
     inner.EndOpen(result);
 }