Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface IResourceMetadata

    Metadata about a Resource in JSON serializable format.

    interface IResourceMetadata {
        acceptsRanges?: boolean;
        mediaType?: string;
        pathRelativeToBaseUrl?: string;
        size?: number;
        url: string;
    }

    Properties

    acceptsRanges?: boolean

    If the resource can be partially fetched by defining a byte range.

    If this property is not set, support for byte range requests is unknown.

    mediaType?: string

    The media-type of the resource if known.

    pathRelativeToBaseUrl?: string

    The subpath to the resource starting from the base URL of the resource provider. The subpath must not contain any '..' components.

    If no such subpath can be created, this property is left unset.

    size?: number

    The size of the resource in bytes if known.

    url: string

    The full URL to this resource.