DotNetBrowser
1.21.5
|
Represents parameters that are passed to the NetworkDelegate.OnBeforeURLRequest(BeforeURLRequestParams) method. More...
Inherits DotNetBrowser.RequestParams.
Public Member Functions | |
BeforeURLRequestParams (long requestId, string url, string method, PostData postData) | |
Constructs a new BeforeURLRequestParams instance with specified parameters. More... | |
void | SetUrl (string value) |
Sets the new URL for request. More... | |
![]() | |
RequestParams (long requestId, string url, string method) | |
Constructs a new RequestParams instance with specified parameters. More... | |
Properties | |
PostData | PostData [get, set] |
Gets or sets PostData instance that provides access to post data. Changes will not be applied until BeforeURLRequestParams.SetPostData(PostData) method is called. 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... | |
Represents parameters that are passed to the NetworkDelegate.OnBeforeURLRequest(BeforeURLRequestParams) method.
DotNetBrowser.BeforeURLRequestParams.BeforeURLRequestParams | ( | long | requestId, |
string | url, | ||
string | method, | ||
PostData | postData | ||
) |
Constructs a new BeforeURLRequestParams instance with specified parameters.
requestId | A globally unique identifier for this request. |
url | The current request URL. |
method | The current request method ("GET", "POST" etc.). |
postData | The new POST data that will be sent with POST request. |
void DotNetBrowser.BeforeURLRequestParams.SetUrl | ( | string | value | ) |
Sets the new URL for request.