MonoCloud Authentication SDK
    Preparing search index...

    Options used to customize the behavior of the sign-out handler.

    interface SignOutOptions {
        federatedSignOut?: boolean;
        idToken?: string;
        onError?: OnError;
        postLogoutRedirectUri?: string;
        state?: string;
    }

    Hierarchy

    Index

    Properties

    federatedSignOut?: boolean

    When true, also signs the user out of the MonoCloud session (Single Sign-Out) in addition to the local application session.

    idToken?: string

    ID token hint identifying the session to terminate.

    When provided, the authorization server can use this value to determine which user session should be signed out.

    onError?: OnError

    Callback invoked if an unexpected error occurs during the sign-out flow.

    postLogoutRedirectUri?: string

    The URL the authorization server should redirect the user to after a successful sign-out.

    state?: string

    Optional state value returned to the application after sign-out.