namespace VersOne.Epub.Options { /// /// A predefined set of options for the class. /// public enum EpubReaderOptionsPreset { /// /// Ignore EPUB validation errors that are most common in the real-world EPUB books. This is the default option. /// RELAXED = 1, /// /// All EPUB validation checks are enabled. If the file doesn't conform to the EPUB standard, an exception will be thrown. /// STRICT = 2, /// /// Turn off all EPUB validation checks. EpubReader will try to salvage as much data as possible without throwing any EPUB validation exceptions. /// IGNORE_ALL_ERRORS = 3 } }