1 interface inheriting from IRequestChannel
System.ServiceModel.Primitives (1)
4 implementations of IRequestChannel
System.ServiceModel.Primitives (1)
System.ServiceModel.Primitives.Tests (2)
UnitTests.Common (1)
101 references to IRequestChannel
Client.ChannelLayer.IntegrationTests (15)
Client.TypedClient.IntegrationTests (9)
Contract.Message.IntegrationTests (3)
System.ServiceModel (1)
System.ServiceModel.Federation (10)
System.ServiceModel.Http.Tests (2)
System.ServiceModel.NetFramingBase (1)
System.ServiceModel.Primitives (7)
System.ServiceModel.Primitives.Tests (52)
ServiceModel\ChannelFactoryTest.cs (32)
20ChannelFactory<IRequestChannel> factory = null;
21ChannelFactory<IRequestChannel> factory2 = null;
22IRequestChannel channel = null;
23IRequestChannel channel2 = null;
34factory = new ChannelFactory<IRequestChannel>(binding, endpointAddress);
35factory2 = new ChannelFactory<IRequestChannel>(binding, endpointAddress);
39Assert.True(typeof(IRequestChannel).GetTypeInfo().IsAssignableFrom(channel.GetType().GetTypeInfo()),
40String.Format("Channel type '{0}' was not assignable to '{1}'", channel.GetType(), typeof(IRequestChannel)));
43Assert.True(typeof(IRequestChannel).GetTypeInfo().IsAssignableFrom(channel2.GetType().GetTypeInfo()),
44String.Format("Channel type '{0}' was not assignable to '{1}'", channel2.GetType(), typeof(IRequestChannel)));
52Assert.StrictEqual<IRequestChannel>(channel, channel);
55Assert.NotStrictEqual<IRequestChannel>(channel, channel2);
79ChannelFactory<IRequestChannel> factory = null;
80ChannelFactory<IRequestChannel> factory2 = null;
81IRequestChannel channel = null;
82IRequestChannel channel2 = null;
91factory = new ChannelFactory<IRequestChannel>(binding, endpointAddress);
92factory2 = new ChannelFactory<IRequestChannel>(binding, endpointAddress);
96Assert.True(typeof(IRequestChannel).GetTypeInfo().IsAssignableFrom(channel.GetType().GetTypeInfo()),
97String.Format("Channel type '{0}' was not assignable to '{1}'", channel.GetType(), typeof(IRequestChannel)));
100Assert.True(typeof(IRequestChannel).GetTypeInfo().IsAssignableFrom(channel2.GetType().GetTypeInfo()),
101String.Format("Channel type '{0}' was not assignable to '{1}'", channel2.GetType(), typeof(IRequestChannel)));
109Assert.StrictEqual<IRequestChannel>(channel, channel);
112Assert.NotStrictEqual<IRequestChannel>(channel, channel2);
136ChannelFactory<IRequestChannel> factory = null;
137IRequestChannel channel = null;
146factory = new ChannelFactory<IRequestChannel>(binding, endpointAddress);
152Assert.True(typeof(IRequestChannel).GetTypeInfo().IsAssignableFrom(channel.GetType().GetTypeInfo()),
153String.Format("Channel type '{0}' was not assignable to '{1}'", channel.GetType(), typeof(IRequestChannel)));
197String.Format("Channel type '{0}' was not assignable to '{1}'", channel.GetType(), typeof(IRequestChannel)));
211ChannelFactory<IRequestChannel> factory = null;
217factory = new ChannelFactory<IRequestChannel>(binding, new EndpointAddress(FakeAddress.HttpAddress));
UnitTests.Common (1)