private ChatServiceClient(ChatServiceClientCallback callbackImpl) : base(new System.ServiceModel.InstanceContext(callbackImpl)) { callbackImpl.Initialize(this); }
private ChatServiceClient(ChatServiceClientCallback callbackImpl, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(new System.ServiceModel.InstanceContext(callbackImpl), binding, remoteAddress) { callbackImpl.Initialize(this); }
private ChatServiceClient(ChatServiceClientCallback callbackImpl) : this(new System.ServiceModel.InstanceContext(callbackImpl)) { useGeneratedCallback = true; callbackImpl.Initialize(this); }
private ChatServiceClient(ChatServiceClientCallback callbackImpl, EndpointConfiguration endpointConfiguration) : base(new System.ServiceModel.InstanceContext(callbackImpl), endpointConfiguration) { callbackImpl.Initialize(this); }
private ChatServiceClient(ChatServiceClientCallback callbackImpl, string endpointConfigurationName) : this(new System.ServiceModel.InstanceContext(callbackImpl), endpointConfigurationName) { useGeneratedCallback = true; callbackImpl.Initialize(this); }