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.Signature for .NET 24.6 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 213.45MB
  • Date Added:
  • 2/7/2024

Description

This ZIP file contains only the GroupDocs.Signature for .NET 24.6 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.Signature for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

Develop platform-independent document signing applications with GroupDocs.Signature for .NET 24.6 (DLLs-only). The DLLs package helps developers with integration and compatibility issues while providing support for GZip and LZip archives signing.

Extensive Support for GZip and LZip Archives

Developers can easily sign and verify documents within GZip and LZip archives with the help of the latest digital signature API for .NET release. The following C# code sample illustrates how to sign a GZip archive.


/// <summary>
/// Support Succeeded and Failed list as result of processing archives
/// This example demonstrates how to sign an archive document using several SignOptions. You can also sign archives in LZip format
/// </summary>
using (var signature = new Signature("sample.pdf.gz"))
{
    // create sign options
    var options = new TextSignOptions("signed!")
    {
        // set signature position
        Left = 100,
        Top = 100
    };
    // sign archive to new zip file
    SignResult result = signature.Sign("output.pdf.gz", options);
    // analyze signed documents
    foreach (DocumentResultSignature document in result.Succeeded)
    {
        Console.WriteLine($"Document {document.FileName}. Processed: {document.ProcessingTime}, mls");
    }
    if (result.Failed.Count > 0)
    {
        Console.WriteLine("\nList of failed documents:");
        foreach (DocumentResultSignature document in result.Failed)
        {
            Console.WriteLine($"Document {document.FileName}. Processed: {document.ProcessingTime}, mls");
        }
    }
}

Source*

Signature Management Made Easy

GroupDocs.Signature for .NET enables modifying or removing signatures in headers and footers of Word documents. This version lets users elevate their productivity and broaden the feature set of their C# esigning apps running on Windows, Linux, or macOS.

Reliable Document Signing

The problems related to esigning password-protected PPTX files have been fixed, allowing you to overcome limitations when signing password-protected PPTX files within your cross-platform .NET applications.

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

 English