MonodroidStockPortfolio/MonoDroid.FileHelpers/Enums/ProgressMode.cs

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
}
}