MonoCloud Authentication SDK
    Preparing search index...

    Interface for reading cookies from an incoming request.

    interface IMonoCloudCookieRequest {
        getAllCookies(): Promise<Map<string, string>>;
        getCookie(name: string): Promise<string | undefined>;
    }

    Hierarchy

    Index

    Methods

    • Retrieves a single cookie value by name.

      Parameters

      • name: string

        The name of the cookie to retrieve.

      Returns Promise<string | undefined>