Show / Hide Table of Contents

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 Source

ScanFailureEventArgs(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 Source

ContinueRunning

Get / set a value indicating whether scanning should continue.

Declaration
public bool ContinueRunning { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Exception

The applicable exception.

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

Name

The applicable name.

Declaration
public string Name { get; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000-2022 SharpZipLib Contributors