Пример #1
0
 public string ReverseString(string str)
 {
     WindowsFormsClient.SampleSvc.ReverseStringRequest inValue = new WindowsFormsClient.SampleSvc.ReverseStringRequest();
     inValue.Body     = new WindowsFormsClient.SampleSvc.ReverseStringRequestBody();
     inValue.Body.str = str;
     WindowsFormsClient.SampleSvc.ReverseStringResponse retVal = ((WindowsFormsClient.SampleSvc.SampleServiceSoap)(this)).ReverseString(inValue);
     return(retVal.Body.ReverseStringResult);
 }
Пример #2
0
 public string EndReverseString(System.IAsyncResult result)
 {
     WindowsFormsClient.SampleSvc.ReverseStringResponse retVal = ((WindowsFormsClient.SampleSvc.SampleServiceSoap)(this)).EndReverseString(result);
     return(retVal.Body.ReverseStringResult);
 }