Example #1
0
 public System.Threading.Tasks.Task <PostcodeClient.PCFinder.GetPostCodeResponse> GetPostCodeAsync(string name)
 {
     PostcodeClient.PCFinder.GetPostCodeRequest inValue = new PostcodeClient.PCFinder.GetPostCodeRequest();
     inValue.Body      = new PostcodeClient.PCFinder.GetPostCodeRequestBody();
     inValue.Body.name = name;
     return(((PostcodeClient.PCFinder.PostCodeFinderSoap)(this)).GetPostCodeAsync(inValue));
 }
Example #2
0
 public string GetPostCode(string name)
 {
     PostcodeClient.PCFinder.GetPostCodeRequest inValue = new PostcodeClient.PCFinder.GetPostCodeRequest();
     inValue.Body      = new PostcodeClient.PCFinder.GetPostCodeRequestBody();
     inValue.Body.name = name;
     PostcodeClient.PCFinder.GetPostCodeResponse retVal = ((PostcodeClient.PCFinder.PostCodeFinderSoap)(this)).GetPostCode(inValue);
     return(retVal.Body.GetPostCodeResult);
 }
Example #3
0
 System.Threading.Tasks.Task <PostcodeClient.PCFinder.GetPostCodeResponse> PostcodeClient.PCFinder.PostCodeFinderSoap.GetPostCodeAsync(PostcodeClient.PCFinder.GetPostCodeRequest request)
 {
     return(base.Channel.GetPostCodeAsync(request));
 }
Example #4
0
 PostcodeClient.PCFinder.GetPostCodeResponse PostcodeClient.PCFinder.PostCodeFinderSoap.GetPostCode(PostcodeClient.PCFinder.GetPostCodeRequest request)
 {
     return(base.Channel.GetPostCode(request));
 }