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