Beispiel #1
0
 private NewsCallBackClient(NewsCallBackClientCallback callbackImpl, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
     this(new System.ServiceModel.InstanceContext(callbackImpl), binding, remoteAddress)
 {
     useGeneratedCallback = true;
     callbackImpl.Initialize(this);
 }
Beispiel #2
0
 private NewsCallBackClient(NewsCallBackClientCallback callbackImpl) :
     this(new System.ServiceModel.InstanceContext(callbackImpl))
 {
     useGeneratedCallback = true;
     callbackImpl.Initialize(this);
 }
Beispiel #3
0
 private NewsCallBackClient(NewsCallBackClientCallback callbackImpl, string endpointConfigurationName) :
     this(new System.ServiceModel.InstanceContext(callbackImpl), endpointConfigurationName)
 {
     useGeneratedCallback = true;
     callbackImpl.Initialize(this);
 }