public System.Threading.Tasks.Task <ASPNETClient.SampleSvc.ReverseStringResponse> ReverseStringAsync(string str) { ASPNETClient.SampleSvc.ReverseStringRequest inValue = new ASPNETClient.SampleSvc.ReverseStringRequest(); inValue.Body = new ASPNETClient.SampleSvc.ReverseStringRequestBody(); inValue.Body.str = str; return(((ASPNETClient.SampleSvc.SampleServiceSoap)(this)).ReverseStringAsync(inValue)); }
public string ReverseString(string str) { ASPNETClient.SampleSvc.ReverseStringRequest inValue = new ASPNETClient.SampleSvc.ReverseStringRequest(); inValue.Body = new ASPNETClient.SampleSvc.ReverseStringRequestBody(); inValue.Body.str = str; ASPNETClient.SampleSvc.ReverseStringResponse retVal = ((ASPNETClient.SampleSvc.SampleServiceSoap)(this)).ReverseString(inValue); return(retVal.Body.ReverseStringResult); }
System.Threading.Tasks.Task <ASPNETClient.SampleSvc.ReverseStringResponse> ASPNETClient.SampleSvc.SampleServiceSoap.ReverseStringAsync(ASPNETClient.SampleSvc.ReverseStringRequest request) { return(base.Channel.ReverseStringAsync(request)); }
ASPNETClient.SampleSvc.ReverseStringResponse ASPNETClient.SampleSvc.SampleServiceSoap.ReverseString(ASPNETClient.SampleSvc.ReverseStringRequest request) { return(base.Channel.ReverseString(request)); }