Esempio n. 1
0
 public SendSmsRequestBody(string username, string password, string from, Tamin.Registration.Utility.SmsioService.ArrayOfString to, string text, bool flash, byte[] status, Tamin.Registration.Utility.SmsioService.ArrayOfLong recId)
 {
     this.username = username;
     this.password = password;
     this.from     = from;
     this.to       = to;
     this.text     = text;
     this.flash    = flash;
     this.status   = status;
     this.recId    = recId;
 }
Esempio n. 2
0
 public int SendSms(string username, string password, string from, Tamin.Registration.Utility.SmsioService.ArrayOfString to, string text, bool flash, ref byte[] status, ref Tamin.Registration.Utility.SmsioService.ArrayOfLong recId)
 {
     Tamin.Registration.Utility.SmsioService.SendSmsRequest inValue = new Tamin.Registration.Utility.SmsioService.SendSmsRequest();
     inValue.Body          = new Tamin.Registration.Utility.SmsioService.SendSmsRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     inValue.Body.from     = from;
     inValue.Body.to       = to;
     inValue.Body.text     = text;
     inValue.Body.flash    = flash;
     inValue.Body.status   = status;
     inValue.Body.recId    = recId;
     Tamin.Registration.Utility.SmsioService.SendSmsResponse retVal = ((Tamin.Registration.Utility.SmsioService.SendSoap)(this)).SendSms(inValue);
     status = retVal.Body.status;
     recId  = retVal.Body.recId;
     return(retVal.Body.SendSmsResult);
 }
Esempio n. 3
0
 public System.Threading.Tasks.Task <Tamin.Registration.Utility.SmsioService.SendSmsResponse> SendSmsAsync(string username, string password, string from, Tamin.Registration.Utility.SmsioService.ArrayOfString to, string text, bool flash, byte[] status, Tamin.Registration.Utility.SmsioService.ArrayOfLong recId)
 {
     Tamin.Registration.Utility.SmsioService.SendSmsRequest inValue = new Tamin.Registration.Utility.SmsioService.SendSmsRequest();
     inValue.Body          = new Tamin.Registration.Utility.SmsioService.SendSmsRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     inValue.Body.from     = from;
     inValue.Body.to       = to;
     inValue.Body.text     = text;
     inValue.Body.flash    = flash;
     inValue.Body.status   = status;
     inValue.Body.recId    = recId;
     return(((Tamin.Registration.Utility.SmsioService.SendSoap)(this)).SendSmsAsync(inValue));
 }
Esempio n. 4
0
 public GetInboxResponseBody(Tamin.Registration.Utility.SmsioService.ArrayOfString GetInboxResult)
 {
     this.GetInboxResult = GetInboxResult;
 }