public MessageBag(MessageHead head, byte[] bytesBody) { Debug.Assert(head != null); this.Head = head; this.BytesBody = (bytesBody == null ? new byte[0] : bytesBody); }
public MessageBag(MessageHead head) : this(head, null) { }