Base:
method
OnBeginClose
System.ServiceModel.Channels.ChannelFactoryBase.OnBeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
9 overrides of OnBeginClose
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
73protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.NetFramingBase (2)
System\ServiceModel\Channels\NetFramingTransportChannelFactory.cs (1)
216protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) => OnCloseAsync(timeout).ToApm(callback, state);
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
112protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
47protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
101protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
115protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (1)
760protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
104protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
UnitTests.Common (1)
MockChannelFactory.cs (1)
120protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
4 references to OnBeginClose
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
75return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, innerChannelFactory.BeginClose, innerChannelFactory.EndClose);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
115return base.OnBeginClose(timeout, callback, state);
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
118return base.OnBeginClose(timeout, callback, state);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
121await Task.Factory.FromAsync(base.OnBeginClose, base.OnEndClose, timeout, null);