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; }
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)); }
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); }
public SendSmsResponseBody(int SendSmsResult, byte[] status, Tamin.Registration.Utility.SmsioService.ArrayOfLong recId) { this.SendSmsResult = SendSmsResult; this.status = status; this.recId = recId; }