Example #1
0
 public System.Threading.Tasks.Task <Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationResponse> GetZIPCodeInformationAsync(string ZIPCode)
 {
     Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequest inValue = new Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequest();
     inValue.Body         = new Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequestBody();
     inValue.Body.ZIPCode = ZIPCode;
     return(((Assignment3Part1.ZipCodeFinder.ZipCodeLookupSoap)(this)).GetZIPCodeInformationAsync(inValue));
 }
Example #2
0
 public Assignment3Part1.ZipCodeFinder.ZIPCode[] GetZIPCodeInformation(string ZIPCode)
 {
     Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequest inValue = new Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequest();
     inValue.Body         = new Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequestBody();
     inValue.Body.ZIPCode = ZIPCode;
     Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationResponse retVal = ((Assignment3Part1.ZipCodeFinder.ZipCodeLookupSoap)(this)).GetZIPCodeInformation(inValue);
     return(retVal.Body.GetZIPCodeInformationResult);
 }
Example #3
0
 System.Threading.Tasks.Task <Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationResponse> Assignment3Part1.ZipCodeFinder.ZipCodeLookupSoap.GetZIPCodeInformationAsync(Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequest request)
 {
     return(base.Channel.GetZIPCodeInformationAsync(request));
 }
Example #4
0
 Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationResponse Assignment3Part1.ZipCodeFinder.ZipCodeLookupSoap.GetZIPCodeInformation(Assignment3Part1.ZipCodeFinder.GetZIPCodeInformationRequest request)
 {
     return(base.Channel.GetZIPCodeInformation(request));
 }