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