Verifier (NotesDocument - JavaScript)

Read-only. The name of the certificate that verified a signature, if a document is signed.

Defined in

NotesDocument

Syntax

getVerifier() : string

Usage

This property is an empty string if the document is not signed.

This property is an empty string if the signer is not trusted.

Examples

This computed field displays the signer and verifier for the current document.
var doc:NotesDocument = currentDocument.getDocument();
return doc.isSigned() ? "Document signed by " + doc.getSigner() + 
	", verified by " + doc.getVerifier(): 	"Document not  signed;"