Advanced search certificate documents

GroupDocs.SignatureΒ providesΒ CertificateSearchOptionsΒ classΒ to specify different options to search text data within the certificate docuemnts. Please be aware that the search result will be always as the MetadataSignature.

Here are the steps to search for the values within the certificate document with GroupDocs.Signature:

This example shows how to make advanced search for text data within the certificate documents.

var loadOptions = new LoadOptions()
{
    Password = "1234567890"
};

using (var signature = new Signature("certificate.pfx", loadOptions))
{
    var options = new CertificateSearchOptions()
    {
        // check the serial number
        Text = "AAD0D15C628A",
        // find exact math
        MatchType = TextMatchType.Contains,
    };

    // search for certificate data
    var result = signature.Search<MetadataSignature>(options);
    if (result.Count>0)
    {
        Console.WriteLine("\nCertificate contains following search results");
        foreach (MetadataSignature temp in result)
        {
            Console.WriteLine($"\t\t-{temp.Name} - {temp.Value}");
        }
    }
    else
    {
        Helper.WriteError("\nCertificate failed search process.");
    }
}

More resources

GitHub Examples

You may easily run the code above and see the feature in action in ourΒ GitHub examples:

Free Online Apps

Along with the full-featured .NET library, we provide simple but powerful free online apps.

To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.