Base:
method
OnBeginClose
System.ServiceModel.Channels.ChannelFactoryBase.OnBeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
5 overrides of OnBeginClose
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
73
protected override IAsyncResult
OnBeginClose
(TimeSpan timeout, AsyncCallback callback, object state)
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)
3 references to OnBeginClose
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
75
return new ChainedAsyncResult(timeout, callback, state, base.
OnBeginClose
, base.OnEndClose, innerChannelFactory.BeginClose, innerChannelFactory.EndClose);
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);