コード例 #1
0
ファイル: Reference.cs プロジェクト: myvisiontoday/PROEP
 private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress()
 {
     return(StockServiceClient.GetEndpointAddress(EndpointConfiguration.ClockService));
 }
コード例 #2
0
ファイル: Reference.cs プロジェクト: myvisiontoday/PROEP
 private static System.ServiceModel.Channels.Binding GetDefaultBinding()
 {
     return(StockServiceClient.GetBindingForEndpoint(EndpointConfiguration.ClockService));
 }
コード例 #3
0
ファイル: Reference.cs プロジェクト: myvisiontoday/PROEP
 public StockServiceClient(EndpointConfiguration endpointConfiguration) :
     base(StockServiceClient.GetBindingForEndpoint(endpointConfiguration), StockServiceClient.GetEndpointAddress(endpointConfiguration))
 {
 }
コード例 #4
0
ファイル: Reference.cs プロジェクト: myvisiontoday/PROEP
 public StockServiceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) :
     base(StockServiceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress)
 {
 }
コード例 #5
0
ファイル: Reference.cs プロジェクト: myvisiontoday/PROEP
 public StockServiceClient() :
     base(StockServiceClient.GetDefaultBinding(), StockServiceClient.GetDefaultEndpointAddress())
 {
 }