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