2 types derived from MsmqChannelFactoryBase
System.ServiceModel (2)
System\ServiceModel\Channels\MsmqChannelFactory.cs (1)
9abstract class MsmqChannelFactory<TChannel> : MsmqChannelFactoryBase<TChannel>
System\ServiceModel\MsmqIntegration\MsmqIntegrationChannelFactory.cs (1)
14sealed class MsmqIntegrationChannelFactory : MsmqChannelFactoryBase<IOutputChannel>
8 references to MsmqChannelFactoryBase
System.ServiceModel (8)
System\ServiceModel\Channels\MsmqOutputMessage.cs (2)
36public MsmqOutputMessage(MsmqChannelFactoryBase<TChannel> factory, int bodySize, EndpointAddress remoteAddress) 41protected MsmqOutputMessage(MsmqChannelFactoryBase<TChannel> factory, int bodySize, EndpointAddress remoteAddress, int additionalPropertyCount)
System\ServiceModel\Channels\MsmqTransportBindingElement.cs (2)
131MsmqChannelFactoryBase<IOutputChannel> factory = new MsmqOutputChannelFactory(this, context); 137MsmqChannelFactoryBase<IOutputSessionChannel> factory = new MsmqOutputSessionChannelFactory(this, context);
System\ServiceModel\Channels\MsmqVerifier.cs (2)
13internal static void VerifySender<TChannel>(MsmqChannelFactoryBase<TChannel> factory) 167static void EnsureSecurityTokenManagerPresent<TChannel>(MsmqChannelFactoryBase<TChannel> factory)
System\ServiceModel\MsmqIntegration\MsmqIntegrationBindingElement.cs (1)
104MsmqChannelFactoryBase<IOutputChannel> factory = new MsmqIntegrationChannelFactory(this, context);
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (1)
203MsmqChannelFactoryBase<IOutputChannel> factory,