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