Show / Hide Table of Contents

Class TestStatus

Status returned by ZipTestResultHandler during testing.

Inheritance
System.Object
TestStatus
Inherited Members
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.Zip
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public class TestStatus

Constructors

| Improve this Doc View Source

TestStatus(ZipFile)

Initialise a new instance of TestStatus

Declaration
public TestStatus(ZipFile file)
Parameters
Type Name Description
ZipFile file

The ZipFile this status applies to.

Properties

| Improve this Doc View Source

BytesTested

Get the number of bytes tested so far for the current entry.

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

Entry

Get the current/last entry tested.

Declaration
public ZipEntry Entry { get; }
Property Value
Type Description
ZipEntry
| Improve this Doc View Source

EntryValid

Get a value indicating whether the last entry test was valid.

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

ErrorCount

Get the number of errors detected so far.

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

File

Get the ZipFile this status is applicable to.

Declaration
public ZipFile File { get; }
Property Value
Type Description
ZipFile
| Improve this Doc View Source

Operation

Get the current TestOperation in progress.

Declaration
public TestOperation Operation { get; }
Property Value
Type Description
TestOperation

See Also

TestArchive(Boolean)
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000-2022 SharpZipLib Contributors