mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2024-12-29 11:17:07 +00:00
16 lines
No EOL
441 B
C#
16 lines
No EOL
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
|
|
}
|
|
} |