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