private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() { return(MyPhotosClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IMyPhotos)); }
private static System.ServiceModel.Channels.Binding GetDefaultBinding() { return(MyPhotosClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IMyPhotos)); }
public MyPhotosClient(EndpointConfiguration endpointConfiguration) : base(MyPhotosClient.GetBindingForEndpoint(endpointConfiguration), MyPhotosClient.GetEndpointAddress(endpointConfiguration)) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
public MyPhotosClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : base(MyPhotosClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) { this.Endpoint.Name = endpointConfiguration.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }
public MyPhotosClient() : base(MyPhotosClient.GetDefaultBinding(), MyPhotosClient.GetDefaultEndpointAddress()) { this.Endpoint.Name = EndpointConfiguration.BasicHttpBinding_IMyPhotos.ToString(); ConfigureEndpoint(this.Endpoint, this.ClientCredentials); }