Example #1
0
 public PlainMessage(TargetInformation from, TargetInformation to, MessageBody messageBody)
 {
     From = from;
     To   = to;
     Mb   = messageBody;
 }
Example #2
0
        public PlainMessage CreateMessage(TargetInformation from, TargetInformation to, MessageBody msg)
        {
            PlainMessage message = new PlainMessage(from, to, msg);

            return(message);
        }