예제 #1
0
 public System.Threading.Tasks.Task <SmsService.SendCustomSmsResponse> SendCustomSmsAsync(string user_id, string password, string sms_type_id, string sms_tmpl_id, string mobile_no, string sms)
 {
     SmsService.SendCustomSmsRequest inValue = new SmsService.SendCustomSmsRequest();
     inValue.Body             = new SmsService.SendCustomSmsRequestBody();
     inValue.Body.user_id     = user_id;
     inValue.Body.password    = password;
     inValue.Body.sms_type_id = sms_type_id;
     inValue.Body.sms_tmpl_id = sms_tmpl_id;
     inValue.Body.mobile_no   = mobile_no;
     inValue.Body.sms         = sms;
     return(((SmsService.SmsManagerSoap)(this)).SendCustomSmsAsync(inValue));
 }
예제 #2
0
 System.Threading.Tasks.Task <SmsService.SendCustomSmsResponse> SmsService.SmsManagerSoap.SendCustomSmsAsync(SmsService.SendCustomSmsRequest request)
 {
     return(base.Channel.SendCustomSmsAsync(request));
 }