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