File size: 825 Bytes
fab29d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
namespace VersOne.Epub.Options
{
/// <summary>
/// A predefined set of options for the <see cref="EpubReaderOptions" /> class.
/// </summary>
public enum EpubReaderOptionsPreset
{
/// <summary>
/// Ignore EPUB validation errors that are most common in the real-world EPUB books. This is the default option.
/// </summary>
RELAXED = 1,
/// <summary>
/// All EPUB validation checks are enabled. If the file doesn't conform to the EPUB standard, an exception will be thrown.
/// </summary>
STRICT = 2,
/// <summary>
/// Turn off all EPUB validation checks. EpubReader will try to salvage as much data as possible without throwing any EPUB validation exceptions.
/// </summary>
IGNORE_ALL_ERRORS = 3
}
}
|