Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
A performance issue was observed while migrating emails to the Microsoft Office® 365. This issue has been resolved now.
Pagination of the unread email messages were having issue while being read via Microsoft Graph® Client. This issue has now been resolved.
// reading unread messages with paging using var client = GraphClient.GetClient(tokenProvider, config.Tenant); // paging option var itemsPerPage = 10; // create unread messages filter GraphQueryBuilder builder = new GraphQueryBuilder(); builder.IsRead.Equals(false); var query = builder.GetQuery(); // list messages var pageInfo = client.ListMessages(KnownFolders.Inbox, new PageInfo(itemsPerPage), query); var messages = pageInfo.Items; while (!pageInfo.LastPage) { pageInfo = client.ListMessages(KnownFolders.Inbox, pageInfo.NextPage, query); messages.AddRange(pageInfo.Items); } // set messages state as read foreach (var message in messages) { client.SetRead(message.ItemId); }
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Email for .NET 22.5 Release Notes.