I want to search imap inbox with mailkit based on multiple condition like NotSeen & NotDeleted. I know the queries are receptively,if we do individual search query.
var uids = client.Inbox.Search(SearchQuery.NotSeen);
var uids = client.Inbox.Search(SearchQuery.NotDeleted );
but i need to put those two queries together & get all Uids based on the conditions. Any help would be appreciated.