storeAuthStateInCookie property

bool? storeAuthStateInCookie

Implementation

bool? get storeAuthStateInCookie => _jsObject.storeAuthStateInCookie;
void storeAuthStateInCookie=(bool? value)

Sets whether the authentication state should be stored in a cookie.

If true, MSAL store's the auth request state required for validation of the auth flows in the browser cookies. Should be set to true for use cases using IE.

Defaults to false.

Implementation

set storeAuthStateInCookie(bool? value) =>
    _jsObject.storeAuthStateInCookie = value;