コード例 #1
0
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return ContactPersonServiceClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IContactPersonService);
 }
コード例 #2
0
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return ContactPersonServiceClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IContactPersonService);
 }
コード例 #3
0
 public ContactPersonServiceClient(EndpointConfiguration endpointConfiguration) : 
         base(ContactPersonServiceClient.GetBindingForEndpoint(endpointConfiguration), ContactPersonServiceClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
コード例 #4
0
 public ContactPersonServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : 
         base(ContactPersonServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
コード例 #5
0
 public ContactPersonServiceClient() : 
         base(ContactPersonServiceClient.GetDefaultBinding(), ContactPersonServiceClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_IContactPersonService.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }