GroupDocs.Metadata for .NET 26.6 Release Notes
This page contains release notes for GroupDocs.Metadata for .NET 26.6
Major Features
There are the following features, enhancements, and fixes in this release:
- Improved MSG saving behavior: unchanged fields and transport message headers are no longer rewritten during open/save operations.
- Added file type feature support API via GetSupportedFileTypeFeatures.
- Updated target frameworks: netstandard has been replaced with net6.0 and net8.0.
Full List of Issues Covering all Changes in this Release
| Key | Summary | Category |
|---|---|---|
| METADATANET-4215 | Investigate and create GetSupportedFileTypeFeatures method for SupportFormat matrix | New Feature |
| METADATANET-4212 | Remove nestandard. Support net6.0 net8.0 | New Feature |
| METADATANET-4213 | GroupDocs.Metada discards HTML body when saving MSG file | Bug |
Public API and Backward Incompatible Changes
Public API changes
The GroupDocs.Metadata.Common.FileTypeFeatureSupport has been added to
GroupDocs.Metadata.Common namespace
The GroupDocs.Metadata.Common.FormatFamily has been added to
GroupDocs.Metadata.Common namespace
The GroupDocs.Metadata.Common.ProductFeature has been added to
GroupDocs.Metadata.Common namespace
The GroupDocs.Metadata.Common.SupportLevel has been added to
GroupDocs.Metadata.Common namespace
The GetSupportedFileTypeFeatures has been added to
GroupDocs.Metadata.Common.FileType class
Use cases
Get feature support information for all registered file types:
IReadOnlyDictionary<FileType, FileTypeFeatureSupport> supportedFeatures =
FileType.GetSupportedFileTypeFeatures();
foreach (var item in supportedFeatures)
{
Console.WriteLine($"{item.Key}: {item.Value}");
}
Get feature support information by file type:
FileTypeFeatureSupport pdfFeatures =
FileType.GetSupportedFileTypeFeatures(FileType.Pdf);
Console.WriteLine(pdfFeatures);
Get feature support information by extension:
FileTypeFeatureSupport msgFeatures =
FileType.GetSupportedFileTypeFeatures(".msg");
Console.WriteLine(msgFeatures);