1 interface inheriting from IOutputSession
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IDuplexSession.cs (1)
9
public interface IDuplexSession : IInputSession,
IOutputSession
16 references to IOutputSession
dotnet-svcutil-lib (16)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IOutputSessionChannel.cs (1)
10
: IOutputChannel, ISessionChannel<
IOutputSession
>
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\IRequestSessionChannel.cs (1)
10
: IRequestChannel, ISessionChannel<
IOutputSession
>
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (6)
69
(innerChannel is ISessionChannel<
IOutputSession
>);
1500
IOutputSession
IContextChannel.OutputSession
1506
ISessionChannel<
IOutputSession
> outputSession = InnerChannel as ISessionChannel<
IOutputSession
>;
1529
ISessionChannel<
IOutputSession
> outputSession = InnerChannel as ISessionChannel<
IOutputSession
>;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
700
IOutputSession
IContextChannel.OutputSession
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
641
IOutputSession
IContextChannel.OutputSession
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ListenerHandler.cs (1)
354
channel is ISessionChannel<
IOutputSession
>);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OutputChannelBinder.cs (1)
34
get { return _channel is ISessionChannel<
IOutputSession
>; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\RequestChannelBinder.cs (1)
31
get { return _channel is ISessionChannel<
IOutputSession
>; }
FrameworkFork\System.ServiceModel\System\ServiceModel\IContextChannel.cs (1)
21
IOutputSession
OutputSession { get; }
FrameworkFork\System.ServiceModel\System\ServiceModel\OperationContext.cs (2)
263
ISessionChannel<
IOutputSession
> output = inner as ISessionChannel<
IOutputSession
>;