コード例 #1
0
 protected override void OnEndOpen(IAsyncResult result)
 {
     PrintHelper.Print(this, "OnEndOpen");
     this._innerChannelFactory.EndOpen(result);
 }
コード例 #2
0
 protected override void OnOpen(TimeSpan timeout)
 {
     PrintHelper.Print(this, "OnOpen");
     this._innerChannelFactory.Open(timeout);
 }
コード例 #3
0
 protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
 {
     PrintHelper.Print(this, "OnBeginOpen");
     return(this._innerChannelFactory.BeginOpen(timeout, callback, state));
 }
コード例 #4
0
 public SimpleSessionChannelFactory(BindingContext context)
 {
     PrintHelper.Print(this, "SimpleSessionChannelFactory");
     this._innerChannelFactory = context.BuildInnerChannelFactory <TChannel>();
 }