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