Verifies the signature at the given index.

Namespace:  Cryptware.NDigitSign
Assembly:  NDigitSign (in NDigitSign.dll)

Syntax

Visual Basic (Declaration)
Public Function Verify ( _
	index As Integer _
) As Boolean
C#
public bool Verify(
	int index
)
Visual C++
public:
bool Verify(
	int index
)
JavaScript
function verify(index);

Parameters

index
Type: System..::..Int32

Return Value

true if the signature is valid

Remarks

This method verifies the signatures at the given index in the signed document and returns true only if it is valid.
If the signature is detached it thorws ERROR_NODETACHED_SIGNATURE exception.
For detached signature use the method verify(byte[] signedContent)

See Also