Base:
method
OnBeginClose
System.ServiceModel.Channels.ChannelFactoryBase.OnBeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
4 overrides of OnBeginClose
System.ServiceModel.NetFramingBase (2)
System\ServiceModel\Channels\NetFramingTransportChannelFactory.cs (1)
216
protected override IAsyncResult
OnBeginClose
(TimeSpan timeout, AsyncCallback callback, object state) => OnCloseAsync(timeout).ToApm(callback, state);
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
112
protected override IAsyncResult
OnBeginClose
(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
104
protected override IAsyncResult
OnBeginClose
(TimeSpan timeout, AsyncCallback callback, object state)
UnitTests.Common (1)
MockChannelFactory.cs (1)
120
protected override IAsyncResult
OnBeginClose
(TimeSpan timeout, AsyncCallback callback, object state)
2 references to OnBeginClose
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
115
return base.
OnBeginClose
(timeout, callback, state);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
121
await Task.Factory.FromAsync(base.
OnBeginClose
, base.OnEndClose, timeout, null);