コード例 #1
0
 public System.Threading.Tasks.Task <WebApplication2.FindPostcodeSvc.FindPostcodeResponse> FindPostcodeAsync(string suburb)
 {
     WebApplication2.FindPostcodeSvc.FindPostcodeRequest inValue = new WebApplication2.FindPostcodeSvc.FindPostcodeRequest();
     inValue.Body        = new WebApplication2.FindPostcodeSvc.FindPostcodeRequestBody();
     inValue.Body.suburb = suburb;
     return(((WebApplication2.FindPostcodeSvc.PostcodeFinderServiceSoap)(this)).FindPostcodeAsync(inValue));
 }
コード例 #2
0
 public string FindPostcode(string suburb)
 {
     WebApplication2.FindPostcodeSvc.FindPostcodeRequest inValue = new WebApplication2.FindPostcodeSvc.FindPostcodeRequest();
     inValue.Body        = new WebApplication2.FindPostcodeSvc.FindPostcodeRequestBody();
     inValue.Body.suburb = suburb;
     WebApplication2.FindPostcodeSvc.FindPostcodeResponse retVal = ((WebApplication2.FindPostcodeSvc.PostcodeFinderServiceSoap)(this)).FindPostcode(inValue);
     return(retVal.Body.FindPostcodeResult);
 }
コード例 #3
0
 System.Threading.Tasks.Task <WebApplication2.FindPostcodeSvc.FindPostcodeResponse> WebApplication2.FindPostcodeSvc.PostcodeFinderServiceSoap.FindPostcodeAsync(WebApplication2.FindPostcodeSvc.FindPostcodeRequest request)
 {
     return(base.Channel.FindPostcodeAsync(request));
 }
コード例 #4
0
 WebApplication2.FindPostcodeSvc.FindPostcodeResponse WebApplication2.FindPostcodeSvc.PostcodeFinderServiceSoap.FindPostcode(WebApplication2.FindPostcodeSvc.FindPostcodeRequest request)
 {
     return(base.Channel.FindPostcode(request));
 }