CodeDomFixup\CodeDomVisitors\ConstructorFixer.cs (5)
21new Type[] { typeof(InstanceContext), },
24new Type[] { typeof(InstanceContext), typeof(string), },
25new Type[] { typeof(InstanceContext), typeof(string), typeof(string), },
26new Type[] { typeof(InstanceContext), typeof(string), typeof(EndpointAddress), },
28new Type[] { typeof(InstanceContext), typeof(Binding), typeof(EndpointAddress), },
FrameworkFork\System.ServiceModel\System\ServiceModel\DuplexChannelFactory.cs (18)
37public DuplexChannelFactory(InstanceContext callbackInstance)
40public DuplexChannelFactory(InstanceContext callbackInstance, Binding binding, String remoteAddress)
43public DuplexChannelFactory(InstanceContext callbackInstance, Binding binding, EndpointAddress remoteAddress)
46public DuplexChannelFactory(InstanceContext callbackInstance, Binding binding)
49public DuplexChannelFactory(InstanceContext callbackInstance, string endpointConfigurationName, EndpointAddress remoteAddress)
52public DuplexChannelFactory(InstanceContext callbackInstance, string endpointConfigurationName)
55public DuplexChannelFactory(InstanceContext callbackInstance, ServiceEndpoint endpoint)
177else if (callbackInstance is InstanceContext)
179this.CallbackInstance = (InstanceContext)callbackInstance;
187public TChannel CreateChannel(InstanceContext callbackInstance)
192public TChannel CreateChannel(InstanceContext callbackInstance, EndpointAddress address)
207public virtual TChannel CreateChannel(InstanceContext callbackInstance, EndpointAddress address, Uri via)
254private static InstanceContext GetInstanceContextForObject(object callbackObject)
256if (callbackObject is InstanceContext)
258return (InstanceContext)callbackObject;
279public static TChannel CreateChannel(InstanceContext callbackInstance, String endpointConfigurationName)
287public static TChannel CreateChannel(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress)
295public static TChannel CreateChannel(InstanceContext callbackInstance, Binding binding, EndpointAddress endpointAddress, Uri via)