EWS Managed API: Fetch emails by search filter on DateTimeReceived
问题 While searching for items in the inbox that have been received after a particular time frame (as mentioned in the code below). It searches for the date but it is also returning the email with the specified timestamp. I want the emails only after the specified timestamp. SearchFilter greaterthanfilter = new SearchFilter.IsGreaterThan(ItemSchema.DateTimeReceived, Convert.ToDateTime(lastUploadedEmailtimeStamp)); mailItems = inbox.FindItems(greaterthanfilter, view); Not sure if anyone has faced