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 SourceTestStatus(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 SourceBytesTested
Get the number of bytes tested so far for the current entry.
Declaration
public long BytesTested { get; }
Property Value
Type | Description |
---|---|
System.Int64 |
Entry
Get the current/last entry tested.
Declaration
public ZipEntry Entry { get; }
Property Value
Type | Description |
---|---|
ZipEntry |
EntryValid
Get a value indicating whether the last entry test was valid.
Declaration
public bool EntryValid { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
ErrorCount
Get the number of errors detected so far.
Declaration
public int ErrorCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
File
Get the ZipFile this status is applicable to.
Declaration
public ZipFile File { get; }
Property Value
Type | Description |
---|---|
ZipFile |
Operation
Get the current TestOperation in progress.
Declaration
public TestOperation Operation { get; }
Property Value
Type | Description |
---|---|
TestOperation |