Struct ProgressData
Value type used to relay progress back to a subscriber.
Inherited Members
Namespace: Gorgon.Editor.Services
Assembly: Gorgon.Editor.API.dll
Syntax
public readonly struct ProgressData
Constructors
| Edit this page View SourceProgressData(int, int)
Initializes a new instance of the ProgressData struct.
Declaration
public ProgressData(int current, int total)
Parameters
Type | Name | Description |
---|---|---|
int | current | The current item. |
int | total | The total number of items. |
Fields
| Edit this page View SourceCurrent
The current value being processed.
Declaration
public readonly int Current
Field Value
Type | Description |
---|---|
int |
Total
The total number of items to process.
Declaration
public readonly int Total
Field Value
Type | Description |
---|---|
int |