예제 #1
0
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(GetPatientClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IGetPatient));
 }
예제 #2
0
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(GetPatientClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IGetPatient));
 }
예제 #3
0
 public GetPatientClient(EndpointConfiguration endpointConfiguration) :
     base(GetPatientClient.GetBindingForEndpoint(endpointConfiguration), GetPatientClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
예제 #4
0
 public GetPatientClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(GetPatientClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
예제 #5
0
 public GetPatientClient() :
     base(GetPatientClient.GetDefaultBinding(), GetPatientClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_IGetPatient.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }