public CustomizableDuplexChannelFactory(TContext context, InstanceContext callbackInstance, ServiceEndpoint endpoint)
     : base(callbackInstance, endpoint)
 {
     _callbackInstance = callbackInstance;
     Proxy             = GetCustomizableChannel(context);
 }
 public CustomizableDuplexChannelFactory(TContext context, InstanceContext callbackInstance, string endpointConfigurationName)
     : base(callbackInstance, endpointConfigurationName)
 {
     _callbackInstance = callbackInstance;
     Proxy             = GetCustomizableChannel(context);
 }
 public CustomizableDuplexChannelFactory(TContext context, InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress)
     : base(callbackInstance, binding, remoteAddress)
 {
     _callbackInstance = callbackInstance;
     Proxy             = GetCustomizableChannel(context);
 }
 public CustomizableChannelFactory(TContext context, ServiceEndpoint endpoint)
     : base(endpoint)
 {
     Proxy = GetCustomizableChannel(context);
 }
 public CustomizableChannelFactory(TContext context, string endpointConfigurationName)
     : base(endpointConfigurationName)
 {
     Proxy = GetCustomizableChannel(context);
 }
 public CustomizableChannelFactory(TContext context, Binding binding, EndpointAddress remoteAddress)
     : base(binding, remoteAddress)
 {
     Proxy = GetCustomizableChannel(context);
 }