abortOnLoadForNonInteractive property
bool?
get
abortOnLoadForNonInteractive
Whether to terminate launchWebAuthFlow
for non-interactive
requests after the page loads. This parameter does not affect interactive
flows.
When set to true
(default) the flow will terminate
immediately after the page loads. When set to false
, the
flow will only terminate after the
timeoutMsForNonInteractive
passes. This is useful for
identity providers that use JavaScript to perform redirections after the
page loads.
Implementation
bool? get abortOnLoadForNonInteractive =>
_wrapped.abortOnLoadForNonInteractive;
set
abortOnLoadForNonInteractive
(bool? v)
Implementation
set abortOnLoadForNonInteractive(bool? v) {
_wrapped.abortOnLoadForNonInteractive = v;
}