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