'Declaration Public Event InvalidPassword As EventHandler(Of ZipReaderInvalidPasswordEventArgs)
'Usage Dim instance As ZipReader Dim handler As EventHandler(Of ZipReaderInvalidPasswordEventArgs) AddHandler instance.InvalidPassword, handler
public event EventHandler<ZipReaderInvalidPasswordEventArgs> InvalidPassword
Event Data
The event handler receives an argument of type ZipReaderInvalidPasswordEventArgs containing data related to this event. The following ZipReaderInvalidPasswordEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Abort | Gets or sets a boolean value indicating whether the Zip read operation should be aborted. |
NewPassword | Gets or sets the new password to be used during the Zip read operation. |
OldPassword | Gets the current password. |
ZipItemLocalHeader | Gets the local header of the item currently being read. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also