GroupDocs.Metadata for .NET 24.7 Release Notes

Major Features

There are the following features, enhancements, and fixes in this release:

  • Implement a log system
  • Update exif orientantion value enum

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
METADATANET-4056Implement a log systemNew Feature
METADATANET-4064Update exif orientantion value enumNew Feature

Public API and Backward Incompatible Changes

Implement the ability to configure cache for heavy operations

Public API changes

The Logging namespace has been added to the GroupDocs.Metadata for .NET class

Use cases

Copy metadata properties from source file to destination file by tag

 var filePath = "outputh.txt";
 var fileLogger = new FileLogger(filePath);
 Logging.Logging.Start(fileLogger);
 Logging.Logging.Stop();