allowRedirectInIframe property

bool? allowRedirectInIframe

Implementation

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

By default, MSAL will not allow redirect operations to be initiated when the application is inside an iframe.

Set this flag to true to remove this check (to support scenarios such as embedded B2C login).

Defaults to false.

Implementation

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