Esempio n. 1
0
 public int GetInboxCount(string username, string password, bool isRead)
 {
     SMSJobHandler.SMSService.GetInboxCountRequest inValue = new SMSJobHandler.SMSService.GetInboxCountRequest();
     inValue.Body          = new SMSJobHandler.SMSService.GetInboxCountRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     inValue.Body.isRead   = isRead;
     SMSJobHandler.SMSService.GetInboxCountResponse retVal = ((SMSJobHandler.SMSService.SendSoap)(this)).GetInboxCount(inValue);
     return(retVal.Body.GetInboxCountResult);
 }
Esempio n. 2
0
 SMSJobHandler.SMSService.GetInboxCountResponse SMSJobHandler.SMSService.SendSoap.GetInboxCount(SMSJobHandler.SMSService.GetInboxCountRequest request)
 {
     return(base.Channel.GetInboxCount(request));
 }