BeforeRedirectEventArgs class
Arguments for before redirecting for a full page authentication
- Extends
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 |
Constructor Details
(constructor)(redirectUrl, cancel)
Constructs a new instance of the BeforeRedirectEventArgs
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
redirectUrl: string;
Property Value
string