DigitalSignatureIsValid Property

If this digital signature is valid and the document has not been tampered with, this value will be true. Read-only Boolean.

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public bool IsValid { get; }

Property Value

Type: Boolean

Implements

IDigitalSignatureIsValid
Examples
[C#]
using (Presentation pres = new Presentation("SomePresentationSigned.pptx"))
{
    foreach (DigitalSignature signature in pres.DigitalSignatures)
        Console.WriteLine("Signature check: " + (signature.IsValid ? "VALID" : "INVALID"));
}
See Also