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; }
Public ReadOnly Property IsValid As Boolean
Get
public:
virtual property bool IsValid {
bool get () sealed;
}
abstract IsValid : bool with get
override IsValid : bool with get
Property Value
Type:
BooleanImplements
IDigitalSignatureIsValidExamples [C#]
using (Presentation pres = new Presentation("SomePresentationSigned.pptx"))
{
foreach (DigitalSignature signature in pres.DigitalSignatures)
Console.WriteLine("Signature check: " + (signature.IsValid ? "VALID" : "INVALID"));
}
See Also