예제 #1
0
 internal FMessage(WhatsAppApi.Account.WhatsUser remote_user, bool from_me)
 {
     this.status         = Status.Undefined;
     this.gap_behind     = true;
     this.User           = remote_user;
     this.identifier_key = new FMessageIdentifierKey(remote_user.GetFullJid(), from_me, TicketManager.GenerateId());
 }
예제 #2
0
 public FMessage(WhatsAppApi.Account.WhatsUser remote_user, string data, object image)
     : this(remote_user, true)
 {
     this.data        = data;
     this.thumb_image = image;
     this.timestamp   = new DateTime?(DateTime.Now);
 }
예제 #3
0
 internal FMessage(WhatsAppApi.Account.WhatsUser remote_user, bool from_me)
 {
     this.status = Status.Undefined;
     this.gap_behind = true;
     this.User = remote_user;
     this.identifier_key = new FMessageIdentifierKey(remote_user.GetFullJid(), from_me, TicketManager.GenerateId());
 }