示例#1
0
 public Apache.NMS.ITextMessage CreateTextMessage(string text)
 {
     try
     {
         return(EMSConvert.ToNMSTextMessage(this.tibcoSession.CreateTextMessage(text)));
     }
     catch (Exception ex)
     {
         ExceptionUtil.WrapAndThrowNMSException(ex);
         return(null);
     }
 }
示例#2
0
 public Apache.NMS.ITextMessage CreateTextMessage(string text)
 {
     return(EMSConvert.ToNMSTextMessage(this.tibcoSession.CreateTextMessage(text)));
 }