Vinyl
    Preparing search index...

    Interface LicenseServerOptions

    Basic license server configuration. The license provider is given the matching configuration for the selected key system.

    interface LicenseServerOptions {
        init?: Maybe<RequestInit>;
        serverCertificate?: Maybe<ServerCertificate>;
        url?: Maybe<string | URL>;
    }
    Index

    Properties

    init?: Maybe<RequestInit>

    License request init options.

    serverCertificate?: Maybe<ServerCertificate>

    If set, provides the server certificate. An ArrayBufferLike object containing the server certificate. The contents are Key System-specific. If a string is provided, the value will be considered to be Base 64.

    url?: Maybe<string | URL>

    The license server URL. This is required when using the default license provider.