Occurs when application needs password for the encrypted file.
[C#]
public event OnPasswordDelegate OnPassword;
public delegate void OnPasswordDelegate(object sender, string fileName, string newPassword, bool skipFile);
[VB.NET]
Public Event OnOverallProgress As OnOverallProgressDelegate
Public Delegate Sub OnPasswordDelegate(ByVal sender As Object, ByVal fileName As String, ByVal newPassword As String, ByVal skipFile As Boolean)
Description
Write an OnPassword event handler to perform query password for the encrypted file being extracted or tested.
The sender parameter is the object whose event handler is called.
FileName indicates current file name.
NewPassword determines new password that will be used for extracting or testing of the encrypted file.
SkipFile determines if file will be skipped. Set SkipFile to True if you want to skip this file. Default value for SkipFile is False.