Class SessionProcessingStatusProgressUpdate
A progress update that describes how many files have been processed and how many remain to be processed
Inheritance
System.Object
SessionProcessingStatusProgressUpdate
Inherited Members
Namespace: MESL.SqlRace.Domain.SessionProcessing
Assembly: MESL.SqlRace.Domain.dll
Syntax
public abstract class SessionProcessingStatusProgressUpdate : SessionProcessingStatusUpdate
Constructors
SessionProcessingStatusProgressUpdate(SessionProcessingStatus, Int32, Int32)
Declaration
protected SessionProcessingStatusProgressUpdate(SessionProcessingStatus status, int numberOfFilesProcessed, int numberOfFilesToProcess)
Parameters
| Type | Name | Description |
|---|---|---|
| SessionProcessingStatus | status | |
| System.Int32 | numberOfFilesProcessed | |
| System.Int32 | numberOfFilesToProcess |
Properties
NumberOfFilesProcessed
The number of files processed so far
Declaration
public int NumberOfFilesProcessed { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
NumberOfFilesToProcess
The number of files to process in total
Declaration
public int NumberOfFilesToProcess { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |