public static T CreateChannel(InstanceContext <C> context, Binding binding, EndpointAddress endpointAddress)
 {
     return(DuplexChannelFactory <T> .CreateChannel(context.Context, binding, endpointAddress));
 }
 public static T CreateChannel(InstanceContext <C> context, string endpointName)
 {
     return(DuplexChannelFactory <T> .CreateChannel(context.Context, endpointName));
 }
 public static T CreateChannel(C callback, Binding binding, EndpointAddress endpointAddress)
 {
     return(DuplexChannelFactory <T> .CreateChannel(callback, binding, endpointAddress));
 }
 public static T CreateChannel(C callback, string endpointName)
 {
     return(DuplexChannelFactory <T> .CreateChannel(callback, endpointName));
 }