コード例 #1
0
ファイル: Reference.cs プロジェクト: ngobakhanh/Asp.net-core
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(PaymentMethodServiceClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IPaymentMethodService));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: ngobakhanh/Asp.net-core
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(PaymentMethodServiceClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IPaymentMethodService));
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: ngobakhanh/Asp.net-core
 public PaymentMethodServiceClient(EndpointConfiguration endpointConfiguration) :
     base(PaymentMethodServiceClient.GetBindingForEndpoint(endpointConfiguration), PaymentMethodServiceClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: ngobakhanh/Asp.net-core
 public PaymentMethodServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(PaymentMethodServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: ngobakhanh/Asp.net-core
 public PaymentMethodServiceClient() :
     base(PaymentMethodServiceClient.GetDefaultBinding(), PaymentMethodServiceClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_IPaymentMethodService.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }