1 interface inheriting from IInputSession
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IDuplexSession.cs (1)
9public interface IDuplexSession : IInputSession, IOutputSession
16 references to IInputSession
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IInputSessionChannel.cs (1)
9public interface IInputSessionChannel : IInputChannel, ISessionChannel<IInputSession>
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IReplySessionChannel.cs (1)
7public interface IReplySessionChannel : IReplyChannel, ISessionChannel<IInputSession>
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (6)
68(innerChannel is ISessionChannel<IInputSession>) || 1481IInputSession IContextChannel.InputSession 1487ISessionChannel<IInputSession> inputSession = InnerChannel as ISessionChannel<IInputSession>; 1525ISessionChannel<IInputSession> inputSession = InnerChannel as ISessionChannel<IInputSession>;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
678IInputSession IContextChannel.InputSession
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
625IInputSession IContextChannel.InputSession
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InputChannelBinder.cs (1)
36get { return _channel is ISessionChannel<IInputSession>; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
353channel is ISessionChannel<IInputSession> ||
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (1)
36get { return _channel is ISessionChannel<IInputSession>; }
FrameworkFork\System.ServiceModel\System\ServiceModel\IContextChannel.cs (1)
18IInputSession InputSession { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (2)
259ISessionChannel<IInputSession> input = inner as ISessionChannel<IInputSession>;