BeforeFullPageRedirectEventArgs class
Arguments for a full page redirect event if interaction is required during the login flow.
Constructors
| (constructor)(redirect |
Constructs a new instance of the |
Properties
| cancel | Call this method if the redirect should be cancelled because it is being handled by code in the cancelling class. |
| redirect |
The url of the page to redirect to if automatic redirect is cancelled and you want the entire window redirected |
Constructor Details
(constructor)(redirectUrl, cancel)
Constructs a new instance of the BeforeFullPageRedirectEventArgs class
constructor(redirectUrl: string, cancel: () => void);
Parameters
- redirectUrl
-
string
- cancel
-
() => void
Property Details
cancel
Call this method if the redirect should be cancelled because it is being handled by code in the cancelling class.
cancel: () => void;
Property Value
() => void
redirectUrl
The url of the page to redirect to if automatic redirect is cancelled and you want the entire window redirected
redirectUrl: string;
Property Value
string