Class SpineReaderOptions
Various options to configure the behavior of the EPUB spine reader which is used for parsing the <spine> section of the EPUB OPF package file. This section represents the default reading order of the EPUB book.
Inherited Members
Namespace: VersOne.Epub.Options
Assembly: VersOne.Epub.dll
Syntax
public class SpineReaderOptions
Constructors
View SourceSpineReaderOptions(EpubReaderOptionsPreset?)
Initializes a new instance of the SpineReaderOptions class.
Declaration
public SpineReaderOptions(EpubReaderOptionsPreset? preset = null)
Parameters
Type | Name | Description |
---|---|---|
EpubReaderOptionsPreset? | preset | An optional preset to initialize the SpineReaderOptions class with a predefined set of options. |
Properties
View SourceIgnoreMissingManifestItems
Gets or sets a value indicating whether EPUB spine reader should ignore the error when the manifest item referenced by
a EPUB spine item is missing.
If it's set to false
and the manifest item with the given ID is not present, then
the "Incorrect EPUB spine: item with IdRef = "..." is missing in the manifest" exception will be thrown.
Default value is false
.
Declaration
public bool IgnoreMissingManifestItems { get; set; }