Class ScanFailureEventArgs
Arguments passed when scan failures are detected.
Inheritance
System.Object
System.EventArgs
ScanFailureEventArgs
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.Core
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public class ScanFailureEventArgs : EventArgs
Constructors
| Improve this Doc View SourceScanFailureEventArgs(String, Exception)
Initialise a new instance of ScanFailureEventArgs
Declaration
public ScanFailureEventArgs(string name, Exception e)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name to apply. |
System.Exception | e | The exception to use. |
Properties
| Improve this Doc View SourceContinueRunning
Get / set a value indicating whether scanning should continue.
Declaration
public bool ContinueRunning { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Exception
The applicable exception.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.Exception |
Name
The applicable name.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |