コード例 #1
0
ファイル: Reference.cs プロジェクト: HManuela/TS.NET
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(MyPhotosClient.GetEndpointAddress(EndpointConfiguration.BasicHttpBinding_IMyPhotos));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: HManuela/TS.NET
 public MyPhotosClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(MyPhotosClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: HManuela/TS.NET
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(MyPhotosClient.GetBindingForEndpoint(EndpointConfiguration.BasicHttpBinding_IMyPhotos));
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: HManuela/TS.NET
 public MyPhotosClient(EndpointConfiguration endpointConfiguration) :
     base(MyPhotosClient.GetBindingForEndpoint(endpointConfiguration), MyPhotosClient.GetEndpointAddress(endpointConfiguration))
 {
     this.Endpoint.Name = endpointConfiguration.ToString();
     ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
 }