4 implementations of OnBeginClose
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityProtocol.cs (1)
45public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) { throw ExceptionHelper.PlatformNotSupported(); }
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityProtocolFactory.cs (1)
609public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
277public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 452public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
1 reference to OnBeginClose
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (1)
49return _innerCommunicationObject.OnBeginClose(timeout, callback, state);