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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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.
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());
}
}
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.
Parser(Uri) constructor.Parser(Uri, LoadOptions) constructor.Parser(Uri, ParserSettings) constructor.Parser(Uri, LoadOptions, ParserSettings) constructor.LoadOptions(TimeSpan) constructor.LoadOptions(FileFormat, string, Encoding, Encoding, TimeSpan) constructor.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.