Show / Hide Table of Contents

Class EpubManifest

EPUB manifest. Provides an exhaustive list of the content items that constitute the EPUB book.

See https://www.w3.org/publishing/epub32/epub-packages.html#sec-manifest-elem and https://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.3 for more information.

Inheritance
object
EpubManifest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VersOne.Epub.Schema
Assembly: VersOne.Epub.dll
Syntax
public class EpubManifest

Constructors

View Source

EpubManifest(string?, List<EpubManifestItem>?)

Initializes a new instance of the EpubManifest class.

Declaration
public EpubManifest(string? id = null, List<EpubManifestItem>? items = null)
Parameters
Type Name Description
string id

The ID of the manifest or null if the manifest doesn't specify an ID.

List<EpubManifestItem> items

A list of the content items that constitute the EPUB book.

Properties

View Source

Id

Gets the ID of the manifest or null if the manifest doesn't specify an ID.

See https://www.w3.org/publishing/epub32/epub-packages.html#attrdef-id for more information.

Declaration
public string? Id { get; }
Property type: string
View Source

Items

Gets a list of the content items that constitute the EPUB book.

See https://www.w3.org/publishing/epub32/epub-packages.html#sec-manifest-elem and https://idpf.org/epub/20/spec/OPF_2.0.1_draft.htm#Section2.3 for more information.

Declaration
public List<EpubManifestItem> Items { get; }
Property type: List<EpubManifestItem>
  • View Source
In this article
Back to top Generated by DocFX