Browse our Products Toggle navigation
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.Signature for .NET 24.6 (MSI) includes robust features for conveniently integrating digital signatures into your .NET applications. This release empowers you to manipulate signatures within Word documents, effortlessly handle GZip and LZip archives, and more.
.NET developers can effortlessly sign and verify documents within GZip and LZip archives using the latest digital signature API for .NET release. The following code sample illustrates how to sign a GZip archive in C#.
/// <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*
Version 24.6 of GroupDocs.Signature for .NET helps you easily modify or delete signatures in Word document headers and footers. This update supports users in improving their productivity and expanding the feature set of their C# esigning applications.
We have addressed the issues with esigning password-protected PPTX files. You can now overcome limitations while signing password-protected PPTX files within your .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.