public Apache.NMS.IBytesMessage CreateBytesMessage(byte[] body) { Apache.NMS.IBytesMessage bytesMessage = CreateBytesMessage(); if (null != bytesMessage) { bytesMessage.Content = body; } return(bytesMessage); }
public Apache.NMS.IBytesMessage CreateBytesMessage(byte[] body) { try { Apache.NMS.IBytesMessage bytesMessage = CreateBytesMessage(); if (null != bytesMessage) { bytesMessage.Content = body; } return(bytesMessage); } catch (Exception ex) { ExceptionUtil.WrapAndThrowNMSException(ex); return(null); } }