2 implementations of IDuplexContextChannel
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
20internal sealed class ServiceChannel : CommunicationObject, IChannel, IClientChannel, IDuplexContextChannel, IOutputChannel, IRequestChannel, IServiceChannel
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
18public class ServiceChannelProxy : DispatchProxy, ICommunicationObject, IChannel, IClientChannel, IOutputChannel, IRequestChannel, IServiceChannel, IDuplexContextChannel
17 references to IDuplexContextChannel
dotnet-svcutil-lib (17)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (6)
425if (t.IsAssignableFrom(typeof(IDuplexContextChannel))) 1388bool IDuplexContextChannel.AutomaticInputSessionShutdown 1415IAsyncResult IDuplexContextChannel.BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 1420void IDuplexContextChannel.EndCloseOutputSession(IAsyncResult result) 1425void IDuplexContextChannel.CloseOutputSession(TimeSpan timeout) 1459InstanceContext IDuplexContextChannel.CallbackInstance
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (7)
782return ((IDuplexContextChannel)_serviceChannel).BeginCloseOutputSession(timeout, callback, state); 787((IDuplexContextChannel)_serviceChannel).EndCloseOutputSession(result); 792((IDuplexContextChannel)_serviceChannel).CloseOutputSession(timeout); 814return ((IDuplexContextChannel)_serviceChannel).AutomaticInputSessionShutdown; 819((IDuplexContextChannel)_serviceChannel).AutomaticInputSessionShutdown = value; 827return ((IDuplexContextChannel)_serviceChannel).CallbackInstance; 832((IDuplexContextChannel)_serviceChannel).CallbackInstance = value;
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (2)
245IDuplexContextChannel duplexChannel = result as IDuplexContextChannel;
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexClientBase.cs (2)
33public IDuplexContextChannel InnerDuplexChannel 37return (IDuplexContextChannel)InnerChannel;