Hello,
I've experienced a discrepancy using the ImapClient.Search method. In the parameter, it states that I can use the 'Arrived' search even with a DateTime.MinValue value.
So, the following query returns '0' results
ImapMessageCollection msgCollection = imapClient.Search(
ImapListFields.Envelope | ImapListFields.AttachmentInfo,
ImapSearchParameter.Arrived(DateTime.MinValue, DateTime.Today));
while this query returns '2' results. Why is that?
ImapMessageCollection msgCollection = imapClient.Search(
ImapListFields.Envelope | ImapListFields.AttachmentInfo,
ImapSearchParameter.All);