Esempio n. 1
0
 public System.Threading.Tasks.Task <CRMAPI.MService.SyncMobileResponse> SyncMobileAsync(string logicalName, string parameter, string function)
 {
     CRMAPI.MService.SyncMobileRequest inValue = new CRMAPI.MService.SyncMobileRequest();
     inValue.Body             = new CRMAPI.MService.SyncMobileRequestBody();
     inValue.Body.logicalName = logicalName;
     inValue.Body.parameter   = parameter;
     inValue.Body.function    = function;
     return(((CRMAPI.MService.MobileServiceSoap)(this)).SyncMobileAsync(inValue));
 }
Esempio n. 2
0
 public string SyncMobile(string logicalName, string parameter, string function)
 {
     CRMAPI.MService.SyncMobileRequest inValue = new CRMAPI.MService.SyncMobileRequest();
     inValue.Body             = new CRMAPI.MService.SyncMobileRequestBody();
     inValue.Body.logicalName = logicalName;
     inValue.Body.parameter   = parameter;
     inValue.Body.function    = function;
     CRMAPI.MService.SyncMobileResponse retVal = ((CRMAPI.MService.MobileServiceSoap)(this)).SyncMobile(inValue);
     return(retVal.Body.SyncMobileResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <CRMAPI.MService.SyncMobileResponse> CRMAPI.MService.MobileServiceSoap.SyncMobileAsync(CRMAPI.MService.SyncMobileRequest request)
 {
     return(base.Channel.SyncMobileAsync(request));
 }
Esempio n. 4
0
 CRMAPI.MService.SyncMobileResponse CRMAPI.MService.MobileServiceSoap.SyncMobile(CRMAPI.MService.SyncMobileRequest request)
 {
     return(base.Channel.SyncMobile(request));
 }