예제 #1
0
 public SMSJobHandler.SMSService.MessagesBL[] GetMessages(string username, string password, int location, string from, int index, int count)
 {
     SMSJobHandler.SMSService.GetMessagesRequest inValue = new SMSJobHandler.SMSService.GetMessagesRequest();
     inValue.Body          = new SMSJobHandler.SMSService.GetMessagesRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     inValue.Body.location = location;
     inValue.Body.from     = from;
     inValue.Body.index    = index;
     inValue.Body.count    = count;
     SMSJobHandler.SMSService.GetMessagesResponse retVal = ((SMSJobHandler.SMSService.SendSoap)(this)).GetMessages(inValue);
     return(retVal.Body.GetMessagesResult);
 }
예제 #2
0
 SMSJobHandler.SMSService.GetMessagesResponse SMSJobHandler.SMSService.SendSoap.GetMessages(SMSJobHandler.SMSService.GetMessagesRequest request)
 {
     return(base.Channel.GetMessages(request));
 }