Hello, i am working with imapx in c# wpf i am able to authenticate and login to the email address now for get the mails i use following line
ImapClient.Folders.Inbox..Search().OrderByDescending( => .Date).ToList();
to get mails from my Inbox but it takes so much of time, so i am trying to get first 20 mails from the inbox how should i achieve it
ImapClient.Folders.Inbox..Search().OrderByDescending( => .Date).ToList();
to get mails from my Inbox but it takes so much of time, so i am trying to get first 20 mails from the inbox how should i achieve it