Exemple #1
0
 private GameServiceClient(GameServiceClientCallback callbackImpl) :
     base(new System.ServiceModel.InstanceContext(callbackImpl))
 {
     callbackImpl.Initialize(this);
 }
Exemple #2
0
 private GameServiceClient(GameServiceClientCallback callbackImpl, System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
     this(new System.ServiceModel.InstanceContext(callbackImpl), binding, remoteAddress)
 {
     useGeneratedCallback = true;
     callbackImpl.Initialize(this);
 }
Exemple #3
0
 private GameServiceClient(GameServiceClientCallback callbackImpl, EndpointConfiguration endpointConfiguration) :
     base(new System.ServiceModel.InstanceContext(callbackImpl), endpointConfiguration)
 {
     callbackImpl.Initialize(this);
 }