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