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