4 implementations of BeginCloseOutputSession
System.ServiceModel.Http (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
706public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
624public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (1)
1287public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1822public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) => CloseOutputSessionAsync(timeout).ToApm(callback, state);
2 references to BeginCloseOutputSession
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1412return GetDuplexSessionOrThrow().BeginCloseOutputSession(timeout, callback, state);
System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
150await Task.Factory.FromAsync(duplexSession.BeginCloseOutputSession, duplexSession.EndCloseOutputSession, timeout, null);