GroupDocs.Metadata for .NET 25.1 Release Notes
This page contains release notes for GroupDocs.Metadata for .NET 25.1
Major Features
There are the following features, enhancements, and fixes in this release:
- Implement functionality to load files directly from web resources.
Full List of Issues Covering all Changes in this Release
Key | Summary | Category |
---|---|---|
METADATANET-4094 | Implement functionality to load files directly from web resources. | New Feature |
Public API and Backward Incompatible Changes
Public API changes
New constructors has been added to the GroupDocs.Metadata class
Use cases
Load files directly from web resources
var uri = new Uri("https://raw.githubusercontent.com/groupdocs-metadata/GroupDocs.Metadata-for-.NET/refs/heads/master/Examples/GroupDocs.Metadata.Examples.CSharp/Resources/SampleFiles/exif.jpg");
using (Metadata metadata = new Metadata(uri))
{
var jpeg = metadata.GetRootPackage<JpegRootPackage>();
}