Пример #1
0
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(ArticleServiceClient.GetEndpointAddress(EndpointConfiguration.NetTcpBinding_IArticleService));
 }
Пример #2
0
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(ArticleServiceClient.GetBindingForEndpoint(EndpointConfiguration.NetTcpBinding_IArticleService));
 }
Пример #3
0
 public ArticleServiceClient(EndpointConfiguration endpointConfiguration) :
     base(ArticleServiceClient.GetBindingForEndpoint(endpointConfiguration), ArticleServiceClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Пример #4
0
 public ArticleServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(ArticleServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
Пример #5
0
 public ArticleServiceClient() :
     base(ArticleServiceClient.GetDefaultBinding(), ArticleServiceClient.GetDefaultEndpointAddress())
 {
     this.Endpoint.Name = EndpointConfiguration.NetTcpBinding_IArticleService.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }