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