Esempio n. 1
0
 protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
 {
     return(inner.BeginOpen(timeout, callback, state));
 }
Esempio n. 2
0
 /// <summary>
 /// Overriden, let the inner channel factory handle the call.
 /// </summary>
 /// <param name="timeout"></param>
 /// <param name="callback"></param>
 /// <param name="state"></param>
 /// <returns></returns>
 protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
 {
     WCFLogger.Write(TraceEventType.Verbose, "InterceptorChannelFactory begins open");
     return(_innerChannelFactory.BeginOpen(timeout, callback, state));
 }
Esempio n. 3
0
 protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
 {
     ProcessOpen();
     return(inner_factory.BeginOpen(timeout, callback, state));
 }
Esempio n. 4
0
 public IAsyncResult BeginOpen(AsyncCallback callback, object state)
 {
     return(_innerChannelFactory.BeginOpen(callback, state));
 }