Exemplo n.º 1
0
 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));
 }
Exemplo n.º 2
0
 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);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <ASPNETClient.SampleSvc.ReverseStringResponse> ASPNETClient.SampleSvc.SampleServiceSoap.ReverseStringAsync(ASPNETClient.SampleSvc.ReverseStringRequest request)
 {
     return(base.Channel.ReverseStringAsync(request));
 }
Exemplo n.º 4
0
 ASPNETClient.SampleSvc.ReverseStringResponse ASPNETClient.SampleSvc.SampleServiceSoap.ReverseString(ASPNETClient.SampleSvc.ReverseStringRequest request)
 {
     return(base.Channel.ReverseString(request));
 }