GroupDocs.Parser for .NET 20.12 Release Notes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
PARSERNET-1690Implement the ability to identify whether a file is password-protectedNew Feature

Public API and Backward Incompatible Changes

Description

This feature allows to identify whether a file is password-protected.

Public API changes

The following types were added:

  • Added FileInfo class into GroupDocs.Parser.Options namespace.

GroupDocs.Parser.Parser public class was updated with changes as follows:

Usage

The following code shows how to check whether a file is password-protected:

// Get a file info
Options.FileInfo info = Parser.GetFileInfo(document);
// Check IsEncrypted property
Console.WriteLine(info.IsEncrypted ? "Password is required" : "");