@jellyfin/sdk
    Preparing search index...

    Interface CustomDatabaseOptions

    Defines the options for a custom database connector.

    CustomDatabaseOptions

    interface CustomDatabaseOptions {
        ConnectionString?: string;
        Options?: CustomDatabaseOption[];
        PluginAssembly?: string;
        PluginName?: string;
    }
    Index

    Properties

    ConnectionString?: string

    Gets or sets the connection string for the custom database provider.

    CustomDatabaseOptions

    Gets or sets the list of extra options for the custom provider.

    CustomDatabaseOptions

    PluginAssembly?: string

    Gets or sets the plugin assembly to search for providers.

    CustomDatabaseOptions

    PluginName?: string

    Gets or sets the Plugin name to search for database providers.

    CustomDatabaseOptions