Click or drag to resize

PdfIntegrationProviderOnDocumentPasswordAttempt Method

Called before a document password attempt is made by the GUI.

Namespace:  RadPdf.Integration
Assembly:  RadPdfStandard (in RadPdfStandard.dll) Version: 4.7.0.0 (4.7.0.0)
Syntax
public virtual void OnDocumentPasswordAttempt(
	DocumentPasswordAttemptEventArgs e
)

Parameters

e
Type: RadPdf.IntegrationDocumentPasswordAttemptEventArgs
An object (defined by DocumentPasswordAttemptEventArgs) that contains event data.
Remarks

Inheriting classes can override this method to perform other tasks, modify aspects of password attempts, or cancel the attempt all together. If this method is overridden in an inheriting class, you must call the base implementation.

This event is NOT raised for password attempts made by server-side API calls (e.g. when calling the CreateDocument(String, Byte, PdfDocumentSettings, String) method).

See Also