mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 03:00:17 +00:00
16 lines
441 B
C#
16 lines
441 B
C#
|
namespace FileHelpers
|
||
|
{
|
||
|
|
||
|
/// <summary>Indicate the method used to calculate the current progress</summary>
|
||
|
public enum ProgressMode
|
||
|
{
|
||
|
/// <summary>Notify the percent completed.</summary>
|
||
|
NotifyPercent,
|
||
|
/// <summary>Notify the Record completed.</summary>
|
||
|
NotifyRecords,
|
||
|
/// <summary>Notify the bytes readed.</summary>
|
||
|
NotifyBytes,
|
||
|
/// <summary>Dont call to the progress handler.</summary>
|
||
|
DontNotify = 0
|
||
|
}
|
||
|
}
|