GroupDocs.Metadata for .NET 24.9 Release Notes

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

KeySummaryCategory
METADATANET-4098Enumeration of GIF file properties freezesNew Feature
METADATAAPP-134Cannot change MSG file sender infoNew 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");
}