Show / Hide Table of Contents

Class KeysRequiredEventArgs

Arguments used with KeysRequiredEvent

Inheritance
System.Object
System.EventArgs
KeysRequiredEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ICSharpCode.SharpZipLib.Zip
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public class KeysRequiredEventArgs : EventArgs

Constructors

| Improve this Doc View Source

KeysRequiredEventArgs(String)

Initialise a new instance of KeysRequiredEventArgs

Declaration
public KeysRequiredEventArgs(string name)
Parameters
Type Name Description
System.String name

The name of the file for which keys are required.

| Improve this Doc View Source

KeysRequiredEventArgs(String, Byte[])

Initialise a new instance of KeysRequiredEventArgs

Declaration
public KeysRequiredEventArgs(string name, byte[] keyValue)
Parameters
Type Name Description
System.String name

The name of the file for which keys are required.

System.Byte[] keyValue

The current key value.

Properties

| Improve this Doc View Source

FileName

Gets the name of the file for which keys are required.

Declaration
public string FileName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Key

Gets or sets the key value

Declaration
public byte[] Key { get; set; }
Property Value
Type Description
System.Byte[]
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000-2022 SharpZipLib Contributors