11 implementations of BeginClose
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
150public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
708IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1308IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1481public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
304public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
161public System.IAsyncResult BeginClose( System.TimeSpan timeout, System.AsyncCallback callback, object state )
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
205public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 382public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WSTrustChannel.cs (1)
758public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
484IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
342IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
31 references to BeginClose
System.ServiceModel (26)
System\ServiceModel\ChannelFactory.cs (1)
479IAsyncResult result = this.communicationObject.BeginClose(timeout, onCloseComplete, this);
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
2150IAsyncResult result = this.innerListener.BeginClose(timeout, callback, state);
System\ServiceModel\Channels\ChannelPool.cs (1)
38IAsyncResult result = item.BeginClose(timeout, onCloseComplete, item);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
1107return new ChainedCloseAsyncResult(timeout, callback, state, channel.BeginClose, channel.EndClose, activeChannels);
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (1)
208return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, this.innerInputListener.BeginClose, this.innerInputListener.EndClose);
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
203return this.innerInputChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Channels\LayeredChannel.cs (1)
61return this.innerChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
258IAsyncResult result = this.communicationObject.BeginClose(timeout, onCloseComplete, this);
System\ServiceModel\Channels\OneWayChannelFactory.cs (2)
147return this.innerChannel.BeginClose(timeout, callback, state); 300return this.innerChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Channels\ReliableChannelBinder.cs (2)
227return channel.BeginClose(timeout, callback, state); 3993result = this.channel.BeginClose(this.RemainingTime,
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
160new OperationWithTimeoutBeginCallback(this.innerChannelFactory.BeginClose)
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
167new OperationWithTimeoutBeginCallback(this.InnerChannelListener.BeginClose) };
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
397return this.listener.BeginClose(timeout, callback, state);
System\ServiceModel\Channels\ServiceChannel.cs (2)
1385new ChainedBeginHandler(this.InnerChannel.BeginClose), new ChainedEndHandler(this.InnerChannel.EndClose), 1390return this.InnerChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
473this.innerChannelFactory.BeginClose, this.innerChannelFactory.EndClose);
System\ServiceModel\ClientBase.cs (3)
705return ((ICommunicationObject)this).BeginClose(GetChannelFactory().InternalCloseTimeout, callback, state); 797return this.InnerChannel.BeginClose(timeout, callback, state); 1310return ((ICommunicationObject)this.channel).BeginClose(timeout, callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1490return this.innerChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Security\SecurityListenerSettingsLifetimeManager.cs (1)
167beginOperations.Add(new OperationWithTimeoutBeginCallback(this.innerListener.BeginClose));
System\ServiceModel\Security\SecurityUtils.cs (1)
1736IAsyncResult result = this.communicationObject.BeginClose(timeout, onClose, this);
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
163return _communicationObject.BeginClose( timeout, callback, state );
System\ServiceModel\Security\WSTrustChannel.cs (1)
760return Channel.BeginClose(timeout, callback, state);
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
2969IAsyncResult result = communicationObject.BeginClose(ServiceDefaults.CloseTimeout, onDisposeCommunicationObject, communicationObject);
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
486return InnerCommunicationObject.BeginClose(timeout, callback, state);
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
337return ((ICommunicationObject)this).BeginClose(DiscoveryClient.defaultCloseDuration, callback, state);
System\ServiceModel\Discovery\DiscoveryClientChannelFactory.cs (1)
138this.innerChannelFactory.BeginClose,
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (1)
65return this.closeListener.BeginClose(timeout, callback, state);