scripts
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
|
||||
namespace ICSharpCode.SharpZipLib.Zip
|
||||
{
|
||||
// Token: 0x02000062 RID: 98
|
||||
public class KeysRequiredEventArgs : EventArgs
|
||||
{
|
||||
// Token: 0x060003C5 RID: 965 RVA: 0x00013228 File Offset: 0x00012228
|
||||
public KeysRequiredEventArgs(string name)
|
||||
{
|
||||
this.fileName = name;
|
||||
}
|
||||
|
||||
// Token: 0x060003C6 RID: 966 RVA: 0x00013237 File Offset: 0x00012237
|
||||
public KeysRequiredEventArgs(string name, byte[] keyValue)
|
||||
{
|
||||
this.fileName = name;
|
||||
this.key = keyValue;
|
||||
}
|
||||
|
||||
// Token: 0x170000DF RID: 223
|
||||
// (get) Token: 0x060003C7 RID: 967 RVA: 0x0001324D File Offset: 0x0001224D
|
||||
public string FileName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.fileName;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x170000E0 RID: 224
|
||||
// (get) Token: 0x060003C8 RID: 968 RVA: 0x00013255 File Offset: 0x00012255
|
||||
// (set) Token: 0x060003C9 RID: 969 RVA: 0x0001325D File Offset: 0x0001225D
|
||||
public byte[] Key
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.key;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.key = value;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x040002C0 RID: 704
|
||||
private string fileName;
|
||||
|
||||
// Token: 0x040002C1 RID: 705
|
||||
private byte[] key;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user