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