IBeforeRedirectEventArgs interface
Represents arguments used before redirecting event.
- Extends
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 |
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