namespace FileHelpers { /// Indicate the method used to calculate the current progress public enum ProgressMode { /// Notify the percent completed. NotifyPercent, /// Notify the Record completed. NotifyRecords, /// Notify the bytes readed. NotifyBytes, /// Dont call to the progress handler. DontNotify = 0 } }