Represents parameters that are passed to the NetworkDelegate.OnBeforeRedirect(BeforeRedirectParams) method.
More...
Inherits DotNetBrowser.RequestParams.
|
int | ResponseCode [get] |
| Gets the HTTP response code (e.g., 200, 404, and so on). More...
|
|
string | NewURL [get] |
| Gets the new URL. More...
|
|
string | Url [get, protected set] |
| Gets the current request URL. More...
|
|
long | RequestId [get] |
| Gets a globally unique identifier for this request. More...
|
|
string | Method [get] |
| Gets the current request method ("GET", "POST" etc.). More...
|
|
DotNetBrowser.BeforeRedirectParams.BeforeRedirectParams |
( |
long |
requestId, |
|
|
string |
url, |
|
|
string |
method, |
|
|
int |
responseCode, |
|
|
string |
newURL |
|
) |
| |
Constructs a new RequestParams instance with specified parameters.
- Parameters
-
requestId | A globally unique identifier for this request. |
url | The current request URL. |
method | The current request method ("GET", "POST" etc.). |
responseCode | The HTTP response code (e.g., 200, 404, and so on). |
newURL | The new URL. |
string DotNetBrowser.BeforeRedirectParams.NewURL |
|
get |
int DotNetBrowser.BeforeRedirectParams.ResponseCode |
|
get |
Gets the HTTP response code (e.g., 200, 404, and so on).