11 implementations of BeginClose
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
145public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
703IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 1303IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1476public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
299public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
166public System.IAsyncResult BeginClose( System.AsyncCallback callback, object state )
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
200public IAsyncResult BeginClose(AsyncCallback callback, object state) 377public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Security\WSTrustChannel.cs (1)
775public IAsyncResult BeginClose(AsyncCallback callback, object state)
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
478IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
335IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
9 references to BeginClose
System.ServiceModel (8)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
3814IAsyncResult result = this.channel.BeginClose(closeChannelCallback, this); 3890IAsyncResult result = this.channel.BeginClose(channelCloseCallback, this);
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1039return this.proxyChannel.BeginClose(callback, asyncState);
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
425IAsyncResult result = channel.BeginClose(onCloseChannelComplete, channel);
System\ServiceModel\ClientBase.cs (1)
1305return ((ICommunicationObject)this.channel).BeginClose(callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1323result = this.innerChannel.BeginClose(closeInnerChannelCallback, this);
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
168return _communicationObject.BeginClose( callback, state );
System\ServiceModel\Security\WSTrustChannel.cs (1)
777return Channel.BeginClose(callback, state);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
480return InnerCommunicationObject.BeginClose(callback, state);