using System.Diagnostics.CodeAnalysis;
namespace VersOne.Epub.Options
{
///
/// Various options to configure the behavior of the EPUB 2 NCX navigation document reader.
///
public class Epub2NcxReaderOptions
{
///
/// Initializes a new instance of the class.
///
/// An optional preset to initialize the class with a predefined set of options.
[SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "Temporarily ignore unused 'preset' parameter.")]
public Epub2NcxReaderOptions(EpubReaderOptionsPreset? preset = null)
{
IgnoreMissingContentForNavigationPoints = false;
}
///
/// Gets or sets a value indicating whether the EPUB 2 NCX reader should ignore missing content attribute on the navigation points in the NCX.
/// If it's set to false and the content attribute is not present, then the "navigation point X should contain at least one navigation label" exception will be thrown.
/// Otherwise all navigation points without the content attribute and all their child navigation points will be excluded from the navigation map.
/// Default value is false.
///
public bool IgnoreMissingContentForNavigationPoints { get; set; }
}
}