Пример #1
0
 protected MessageObservable(string messageId, DateTime dateTime,
                             string authorName, bool isOutgoing,
                             ReplyObservable reply = null)
 {
     MessageId  = messageId;
     DateTime   = dateTime;
     AuthorName = authorName;
     IsOutgoing = isOutgoing;
     Reply      = reply;
     HasReply   = reply != null;
 }
Пример #2
0
 public UnsupportedMessageObservable(string messageId, DateTime dateTime,
                                     string authorName, bool isOutgoing, ReplyObservable reply = null)
     : base(messageId, dateTime, authorName, isOutgoing, reply)
 {
 }
Пример #3
0
 public TextMessageObservable(string messageId, DateTime dateTime,
                              string authorName, bool isOutgoing, string text, ReplyObservable reply = null)
     : base(messageId, dateTime, authorName, isOutgoing, reply)
 {
     Text = text;
 }