1 type derived from DuplexChannelFactory
System.ServiceModel (1)
System\ServiceModel\Configuration\ConfigurationDuplexChannelFactory.cs (1)
11
public sealed class ConfigurationDuplexChannelFactory<TChannel> :
DuplexChannelFactory
<TChannel>
15 instantiations of DuplexChannelFactory
System.ServiceModel (15)
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1065
this.channelFactory = new
DuplexChannelFactory
<IPeerProxy>(instanceContext, binding, meshEprBuilder.ToEndpointAddress());
System\ServiceModel\Channels\SharedConnectionListener.cs (1)
603
ChannelFactory<IConnectionRegisterAsync> registerChannelFactory = new
DuplexChannelFactory
<IConnectionRegisterAsync>(instanceContext,
System\ServiceModel\ClientBase.cs (6)
196
new
DuplexChannelFactory
<TChannel>(callbackInstance, "*"));
219
new
DuplexChannelFactory
<TChannel>(callbackInstance, endpointConfigurationName));
245
new
DuplexChannelFactory
<TChannel>(callbackInstance, endpointConfigurationName, endpointAddress));
270
new
DuplexChannelFactory
<TChannel>(callbackInstance, endpointConfigurationName, remoteAddress));
300
new
DuplexChannelFactory
<TChannel>(callbackInstance, binding, remoteAddress));
323
new
DuplexChannelFactory
<TChannel>(callbackInstance, endpoint));
System\ServiceModel\ConfigurationEndpointTrait.cs (2)
79
return new
DuplexChannelFactory
<TChannel>(this.callbackInstance, this.endpointConfigurationName, this.remoteAddress);
82
return new
DuplexChannelFactory
<TChannel>(this.callbackInstance, this.endpointConfigurationName);
System\ServiceModel\DuplexChannelFactory.cs (3)
289
DuplexChannelFactory<TChannel> channelFactory = new
DuplexChannelFactory
<TChannel>(callbackInstance, endpointConfigurationName);
297
DuplexChannelFactory<TChannel> channelFactory = new
DuplexChannelFactory
<TChannel>(callbackInstance, binding, endpointAddress);
305
DuplexChannelFactory<TChannel> channelFactory = new
DuplexChannelFactory
<TChannel>(callbackInstance, binding);
System\ServiceModel\ProgrammaticEndpointTrait.cs (1)
77
return new
DuplexChannelFactory
<TChannel>(this.callbackInstance, this.binding, this.remoteAddress);
System\ServiceModel\ServiceEndpointTrait.cs (1)
64
return new
DuplexChannelFactory
<TChannel>(this.callbackInstance, this.endpoint);
6 references to DuplexChannelFactory
System.ServiceModel (6)
System\ServiceModel\ConfigurationEndpointTrait.cs (1)
75
DuplexChannelFactory
<TChannel> CreateDuplexFactory()
System\ServiceModel\DuplexChannelFactory.cs (3)
289
DuplexChannelFactory
<TChannel> channelFactory = new DuplexChannelFactory<TChannel>(callbackInstance, endpointConfigurationName);
297
DuplexChannelFactory
<TChannel> channelFactory = new DuplexChannelFactory<TChannel>(callbackInstance, binding, endpointAddress);
305
DuplexChannelFactory
<TChannel> channelFactory = new DuplexChannelFactory<TChannel>(callbackInstance, binding);
System\ServiceModel\ProgrammaticEndpointTrait.cs (1)
72
DuplexChannelFactory
<TChannel> CreateDuplexFactory()
System\ServiceModel\ServiceEndpointTrait.cs (1)
61
DuplexChannelFactory
<TChannel> CreateDuplexFactory()