FetchClientContinueRequestAsync Method |
Version 106.0.290
Continues the request, optionally modifying some of its parameters.
Namespace:
CefSharp.DevTools.Fetch
Assembly:
CefSharp (in CefSharp.dll) Version: 106.0.290.0 (106.0.290.0)
Syntax public Task<DevToolsMethodResponse> ContinueRequestAsync(
string requestId,
string url = null,
string method = null,
byte[] postData = null,
IList<HeaderEntry> headers = null,
bool? interceptResponse = null
)
public:
Task<DevToolsMethodResponse^>^ ContinueRequestAsync(
String^ requestId,
String^ url = nullptr,
String^ method = nullptr,
array<unsigned char>^ postData = nullptr,
IList<HeaderEntry^>^ headers = nullptr,
Nullable<bool> interceptResponse = nullptr
)
Parameters
- requestId
- Type: SystemString
An id the client received in requestPaused event. - url (Optional)
- Type: SystemString
If set, the request url will be modified in a way that's not observable by page. - method (Optional)
- Type: SystemString
If set, the request method is overridden. - postData (Optional)
- Type: SystemByte
If set, overrides the post data in the request. - headers (Optional)
- Type: System.Collections.GenericIListHeaderEntry
If set, overrides the request headers. - interceptResponse (Optional)
- Type: SystemNullableBoolean
If set, overrides response interception behavior for this request.
Return Value
Type:
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also