Exemple #1
0
 public System.Threading.Tasks.Task <SmsService.SendSmsResponse> SendSmsAsync(string user_id, string password, string sms_tmpl_id, string mobile_no, string sms)
 {
     SmsService.SendSmsRequest inValue = new SmsService.SendSmsRequest();
     inValue.Body             = new SmsService.SendSmsRequestBody();
     inValue.Body.user_id     = user_id;
     inValue.Body.password    = password;
     inValue.Body.sms_tmpl_id = sms_tmpl_id;
     inValue.Body.mobile_no   = mobile_no;
     inValue.Body.sms         = sms;
     return(((SmsService.SmsManagerSoap)(this)).SendSmsAsync(inValue));
 }
Exemple #2
0
 System.Threading.Tasks.Task <SmsService.SendSmsResponse> SmsService.SmsManagerSoap.SendSmsAsync(SmsService.SendSmsRequest request)
 {
     return(base.Channel.SendSmsAsync(request));
 }