protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) { return(inner.BeginOpen(timeout, callback, state)); }
/// <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)); }
protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) { ProcessOpen(); return(inner_factory.BeginOpen(timeout, callback, state)); }
public IAsyncResult BeginOpen(AsyncCallback callback, object state) { return(_innerChannelFactory.BeginOpen(callback, state)); }