Xceed .NET Libraries Documentation
InvalidPassword Event


Xceed.Zip Assembly > Xceed.Zip.ReaderWriter Namespace > ZipReader Class : InvalidPassword Event
Raised when the supplied password is invalid.
Syntax
'Declaration
 
Public Event InvalidPassword As EventHandler(Of ZipReaderInvalidPasswordEventArgs)
'Usage
 
Dim instance As ZipReader
Dim handler As EventHandler(Of ZipReaderInvalidPasswordEventArgs)
 
AddHandler instance.InvalidPassword, handler
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.

PropertyDescription
Gets or sets a boolean value indicating whether the Zip read operation should be aborted.  
Gets or sets the new password to be used during the Zip read operation.  
Gets the current password.  
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