Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

GroupDocs.Parser for .NET 24.2 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 197.29MB
  • Date Added:
  • 29/2/2024

Description

This ZIP file contains only the GroupDocs.Parser for .NET 24.2 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Parser for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

GroupDocs.Parser for .NET 24.2 (DLLs-only) delivers robust document parsing capabilities with a focus on flexibility and performance. This version equips developers to easily load files from URLs, manage NuGet packages, and simplify integration.

Enhanced File Loading

Parse documents from remote locations using URL-based input functionality in the latest .NET parser API release. This sample code demonstrates how to load a file by URL in C# apps.


// Create an instance of Parser class with the url
using (Parser parser = new Parser(url))
{
    // Extract a text into the reader
    using (TextReader reader = parser.GetText())
    {
        // Print a text from the document
        // If text extraction isn't supported, a reader is null
        Console.WriteLine(reader == null ? "Text extraction isn't supported" : reader.ReadToEnd());
    }
}

Source*

NuGet Package Optimization

GroupDocs.Parser for .NET 24.2 lets you manage dependencies effectively with distinct NuGet packages for different .NET platforms including .NET Framework and .NET Standard.

Public API and Backward Incompatible Changes

Added API Members

  • Added Parser(Uri) constructor.
  • Added Parser(Uri, LoadOptions) constructor.
  • Added Parser(Uri, ParserSettings) constructor.
  • Added Parser(Uri, LoadOptions, ParserSettings) constructor.
  • Added LoadOptions(TimeSpan) constructor.
  • Added LoadOptions(FileFormat, string, Encoding, Encoding, TimeSpan) constructor.
  • Added Timeout property.

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Parser for .NET 24.2 Release Notes.

 English