Created
December 10, 2017 12:47
-
-
Save justinyoo/7acc53954cc1a9960732a5634d7413a5 to your computer and use it in GitHub Desktop.
SOAP over Azure API Management, Logic Apps and Functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class Service1Client : ClientBase<IService1>, IService1 | |
{ | |
public Service1Client() | |
{ | |
} | |
// This constructor is of no use for Azure Functions | |
// because it doesn't use Web.config or App.config | |
public Service1Client(string endpointConfigurationName) | |
: base(endpointConfigurationName) | |
{ | |
} | |
// This constructor is of no use for Azure Functions | |
// because it doesn't use Web.config or App.config | |
public Service1Client(string endpointConfigurationName, string remoteAddress) | |
: base(endpointConfigurationName, remoteAddress) | |
{ | |
} | |
// This constructor is of no use for Azure Functions | |
// because it doesn't use Web.config or App.config | |
public Service1Client(string endpointConfigurationName, EndpointAddress remoteAddress) | |
: base(endpointConfigurationName, remoteAddress) | |
{ | |
} | |
// Only this constructor is used for Azure Functions | |
public Service1Client(Binding binding, EndpointAddress remoteAddress) | |
: base(binding, remoteAddress) | |
{ | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment