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