Пример #1
0
 public System.Threading.Tasks.Task <SMSProcess.ServiceVPM.SendMTResponse> SendMTAsync(string src, string dest, string msgbody, string requestid, string username, string password)
 {
     SMSProcess.ServiceVPM.SendMTRequest inValue = new SMSProcess.ServiceVPM.SendMTRequest();
     inValue.Body           = new SMSProcess.ServiceVPM.SendMTRequestBody();
     inValue.Body.src       = src;
     inValue.Body.dest      = dest;
     inValue.Body.msgbody   = msgbody;
     inValue.Body.requestid = requestid;
     inValue.Body.username  = username;
     inValue.Body.password  = password;
     return(((SMSProcess.ServiceVPM.GatewaySoap)(this)).SendMTAsync(inValue));
 }
Пример #2
0
 public int SendMT(string src, string dest, string msgbody, string requestid, string username, string password)
 {
     SMSProcess.ServiceVPM.SendMTRequest inValue = new SMSProcess.ServiceVPM.SendMTRequest();
     inValue.Body           = new SMSProcess.ServiceVPM.SendMTRequestBody();
     inValue.Body.src       = src;
     inValue.Body.dest      = dest;
     inValue.Body.msgbody   = msgbody;
     inValue.Body.requestid = requestid;
     inValue.Body.username  = username;
     inValue.Body.password  = password;
     SMSProcess.ServiceVPM.SendMTResponse retVal = ((SMSProcess.ServiceVPM.GatewaySoap)(this)).SendMT(inValue);
     return(retVal.Body.SendMTResult);
 }
Пример #3
0
 System.Threading.Tasks.Task <SMSProcess.ServiceVPM.SendMTResponse> SMSProcess.ServiceVPM.GatewaySoap.SendMTAsync(SMSProcess.ServiceVPM.SendMTRequest request)
 {
     return(base.Channel.SendMTAsync(request));
 }
Пример #4
0
 SMSProcess.ServiceVPM.SendMTResponse SMSProcess.ServiceVPM.GatewaySoap.SendMT(SMSProcess.ServiceVPM.SendMTRequest request)
 {
     return(base.Channel.SendMT(request));
 }