scripts
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
using System;
|
||||
|
||||
namespace ICSharpCode.SharpZipLib.Core
|
||||
{
|
||||
// Token: 0x02000010 RID: 16
|
||||
public class ScanFailureEventArgs : EventArgs
|
||||
{
|
||||
// Token: 0x06000090 RID: 144 RVA: 0x00006D5E File Offset: 0x00005D5E
|
||||
public ScanFailureEventArgs(string name, Exception e)
|
||||
{
|
||||
this.name_ = name;
|
||||
this.exception_ = e;
|
||||
this.continueRunning_ = true;
|
||||
}
|
||||
|
||||
// Token: 0x1700001A RID: 26
|
||||
// (get) Token: 0x06000091 RID: 145 RVA: 0x00006D7B File Offset: 0x00005D7B
|
||||
public string Name
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.name_;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700001B RID: 27
|
||||
// (get) Token: 0x06000092 RID: 146 RVA: 0x00006D83 File Offset: 0x00005D83
|
||||
public Exception Exception
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.exception_;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x1700001C RID: 28
|
||||
// (get) Token: 0x06000093 RID: 147 RVA: 0x00006D8B File Offset: 0x00005D8B
|
||||
// (set) Token: 0x06000094 RID: 148 RVA: 0x00006D93 File Offset: 0x00005D93
|
||||
public bool ContinueRunning
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.continueRunning_;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.continueRunning_ = value;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x04000074 RID: 116
|
||||
private string name_;
|
||||
|
||||
// Token: 0x04000075 RID: 117
|
||||
private Exception exception_;
|
||||
|
||||
// Token: 0x04000076 RID: 118
|
||||
private bool continueRunning_;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user