Exemplo n.º 1
0
 public Mail(TempMailClient client, string id)
 {
     this.client = client;
     Id          = id;
     Link        = CreateSourceLink(id);
 }
Exemplo n.º 2
0
 public Mail(TempMailClient client, Uri link)
 {
     this.client = client;
     Link        = link;
     Id          = Parser.GetMailId(link);
 }
Exemplo n.º 3
0
 public Inbox(TempMailClient client)
 {
     this.client = client;
     Mails       = new List <Mail>();
 }