4 implementations of EndCloseOutputSession
System.ServiceModel.Http (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
711public void EndCloseOutputSession(IAsyncResult result)
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
629public void EndCloseOutputSession(IAsyncResult result)
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ClientReliableDuplexSessionChannel.cs (1)
1292public void EndCloseOutputSession(IAsyncResult result)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
1824public void EndCloseOutputSession(IAsyncResult result) => result.ToApmEnd();
2 references to EndCloseOutputSession
System.ServiceModel.Primitives (2)
System\ServiceModel\Channels\ServiceChannel.cs (1)
1417GetDuplexSessionOrThrow().EndCloseOutputSession(result);
System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
150await Task.Factory.FromAsync(duplexSession.BeginCloseOutputSession, duplexSession.EndCloseOutputSession, timeout, null);