Exemplo n.º 1
0
 public LazyEmailFromId(IImapConnection connection, int id)
     : base(() => FromId(connection, id))
 {
 }
Exemplo n.º 2
0
 public LatestEmailsSince(IImapConnection connection, ImapDate dateTime)
 {
     this.connection = connection;
     this.dateTime   = dateTime;
 }
Exemplo n.º 3
0
 private static Email FromId(IImapConnection connection, int id)
 {
     return(connection.Connection.FetchSingle(id, false));
 }
Exemplo n.º 4
0
 public LatestEmails(IImapConnection connection, int count, int startIndex = -1)
 {
     this.connection = connection.Connection;
     this.count      = count;
     this.startIndex = startIndex;
 }