5 implementations of BeginCloseOutputSession
System.ServiceModel (5)
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (2)
1737public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 1944public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (1)
673public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (1)
3528public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
4617public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
2 references to BeginCloseOutputSession
System.ServiceModel (2)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
4191IAsyncResult result = this.Channel.Session.BeginCloseOutputSession(
System\ServiceModel\Channels\ServiceChannel.cs (1)
1628return GetDuplexSessionOrThrow().BeginCloseOutputSession(timeout, callback, state);