46 lines
913 B
C#
46 lines
913 B
C#
using System;
|
|
|
|
namespace ICSharpCode.SharpZipLib.Core
|
|
{
|
|
// Token: 0x0200000D RID: 13
|
|
public class ScanEventArgs : EventArgs
|
|
{
|
|
// Token: 0x06000083 RID: 131 RVA: 0x00006C94 File Offset: 0x00005C94
|
|
public ScanEventArgs(string name)
|
|
{
|
|
this.name_ = name;
|
|
}
|
|
|
|
// Token: 0x17000012 RID: 18
|
|
// (get) Token: 0x06000084 RID: 132 RVA: 0x00006CAA File Offset: 0x00005CAA
|
|
public string Name
|
|
{
|
|
get
|
|
{
|
|
return this.name_;
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000013 RID: 19
|
|
// (get) Token: 0x06000085 RID: 133 RVA: 0x00006CB2 File Offset: 0x00005CB2
|
|
// (set) Token: 0x06000086 RID: 134 RVA: 0x00006CBA File Offset: 0x00005CBA
|
|
public bool ContinueRunning
|
|
{
|
|
get
|
|
{
|
|
return this.continueRunning_;
|
|
}
|
|
set
|
|
{
|
|
this.continueRunning_ = value;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0400006D RID: 109
|
|
private string name_;
|
|
|
|
// Token: 0x0400006E RID: 110
|
|
private bool continueRunning_ = true;
|
|
}
|
|
}
|