GroupDocs.Metadata for .NET 24.9 Release Notes
This page contains release notes for GroupDocs.Metadata for .NET 24.9
Major Features
There are the following features, enhancements, and fixes in this release:
- For .gif files with a damaged xmp section, the correct exception is now triggered
- In .msg files now can change the sender
Full List of Issues Covering all Changes in this Release
Key | Summary | Category |
---|---|---|
METADATANET-4098 | Enumeration of GIF file properties freezes | New Feature |
METADATAAPP-134 | Cannot change MSG file sender info | New Feature |
Public API and Backward Incompatible Changes
Implement the ability to configure cache for heavy operations
Public API changes
None
Use cases
Read metadata properties from .cbr/.cb7/.cbz/.cbt formats
using (Metadata metadata = new Metadata("sample.msg"))
{
var root = metadata.GetRootPackage<MsgRootPackage>();
root.EmailPackage.Sender = "sample@aspose.com";
metadata.Save("sample.msg");
}