Exemple #1
0
 public System.Threading.Tasks.Task <LogThisWebApplication.WebService.SomeFunctionResponse> SomeFunctionAsync(string someValue)
 {
     LogThisWebApplication.WebService.SomeFunctionRequest inValue = new LogThisWebApplication.WebService.SomeFunctionRequest();
     inValue.Body           = new LogThisWebApplication.WebService.SomeFunctionRequestBody();
     inValue.Body.someValue = someValue;
     return(((LogThisWebApplication.WebService.WebService1Soap)(this)).SomeFunctionAsync(inValue));
 }
Exemple #2
0
 public string SomeFunction(string someValue)
 {
     LogThisWebApplication.WebService.SomeFunctionRequest inValue = new LogThisWebApplication.WebService.SomeFunctionRequest();
     inValue.Body           = new LogThisWebApplication.WebService.SomeFunctionRequestBody();
     inValue.Body.someValue = someValue;
     LogThisWebApplication.WebService.SomeFunctionResponse retVal = ((LogThisWebApplication.WebService.WebService1Soap)(this)).SomeFunction(inValue);
     return(retVal.Body.SomeFunctionResult);
 }
Exemple #3
0
 System.Threading.Tasks.Task <LogThisWebApplication.WebService.SomeFunctionResponse> LogThisWebApplication.WebService.WebService1Soap.SomeFunctionAsync(LogThisWebApplication.WebService.SomeFunctionRequest request)
 {
     return(base.Channel.SomeFunctionAsync(request));
 }
Exemple #4
0
 LogThisWebApplication.WebService.SomeFunctionResponse LogThisWebApplication.WebService.WebService1Soap.SomeFunction(LogThisWebApplication.WebService.SomeFunctionRequest request)
 {
     return(base.Channel.SomeFunction(request));
 }