2 implementations of IRequestSessionChannel
Extensibility.MessageInterceptor.IntegrationTests (1)
InterceptingChannelFactory.cs (1)
372class InterceptingRequestSessionChannel : InterceptingRequestChannel, IRequestSessionChannel
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
231private class ThrowingRequestSessionChannel : ThrowingRequestChannel, IRequestSessionChannel
9 references to IRequestSessionChannel
Extensibility.MessageInterceptor.IntegrationTests (4)
InterceptingChannelFactory.cs (4)
102else if (typeof(TChannel) == typeof(IRequestSessionChannel)) 105(IRequestSessionChannel)innerChannel); 374IRequestSessionChannel innerSessionChannel; 377InterceptingChannelFactory<TChannel> factory, IRequestSessionChannel innerChannel)
System.ServiceModel (1)
netstandard.cs (1)
69[assembly: TypeForwardedTo(typeof(IRequestSessionChannel))]
System.ServiceModel.Primitives.Tests (4)
ServiceModel\ThrowingOnCloseBindingElement.cs (4)
148else if (typeof(TChannel) == typeof(IRequestSessionChannel)) 150return (TChannel)(object)new ThrowingRequestSessionChannel(this, _parent._exception, (IRequestSessionChannel)innerChannel); 233private readonly IRequestSessionChannel _innerSessionChannel; 236ThrowingChannelFactory<TChannel> factory, Exception exception, IRequestSessionChannel innerChannel)