2 implementations of IOutputSessionChannel
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
352class InterceptingOutputSessionChannel : InterceptingOutputChannel, IOutputSessionChannel
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
218private class ThrowingOutputSessionChannel : ThrowingOutputChannel, IOutputSessionChannel
9 references to IOutputSessionChannel
Extensibility.MessageInterceptor.IntegrationTests (4)
InterceptingChannelFactory.cs (4)
98else if (typeof(TChannel) == typeof(IOutputSessionChannel)) 100return (TChannel)(object)new InterceptingOutputSessionChannel(this, (IOutputSessionChannel)innerChannel); 354IOutputSessionChannel innerSessionChannel; 357InterceptingChannelFactory<TChannel> factory, IOutputSessionChannel innerChannel)
System.ServiceModel (1)
netstandard.cs (1)
67[assembly: TypeForwardedTo(typeof(IOutputSessionChannel))]
System.ServiceModel.Primitives.Tests (4)
ServiceModel\ThrowingOnCloseBindingElement.cs (4)
144else if (typeof(TChannel) == typeof(IOutputSessionChannel)) 146return (TChannel)(object)new ThrowingOutputSessionChannel(this, _parent._exception, (IOutputSessionChannel)innerChannel); 220private readonly IOutputSessionChannel _innerSessionChannel; 223ThrowingChannelFactory<TChannel> factory, Exception exception, IOutputSessionChannel innerChannel)