Class ProgressFraction
Represents a progress report implementation.
public class ProgressFraction : IProgressFraction
- Inheritance
-
ProgressFraction
- Implements
- Inherited Members
- Extension Methods
Constructors
ProgressFraction(NativeProgressFraction)
Initializes a new instance of the ProgressFraction class from a native progress report.
public ProgressFraction(NativeProgressFraction src)
Parameters
srcNativeProgressFractionThe native progress report source.
Properties
Denominator
Gets or sets the denominator value for progress calculation.
public int Denominator { get; set; }
Property Value
Detail
Gets or sets the detailed information about the progress.
public string Detail { get; set; }
Property Value
Msg
Gets or sets the message string.
public string Msg { get; set; }
Property Value
Numerator
Gets or sets the numerator value for progress calculation.
public int Numerator { get; set; }
Property Value
Methods
GetDenominator()
Gets the denominator value for progress calculation.
public int GetDenominator()
Returns
- int
The denominator value.
GetDetail()
Gets the detailed information about the progress.
public string GetDetail()
Returns
- string
The detail string.
GetMsg()
Get message.
public string GetMsg()
Returns
- string
The message string.
GetNumerator()
Gets the numerator value for progress calculation.
public int GetNumerator()
Returns
- int
The numerator value.