Click or drag to resize

FetchClientContinueRequestAsync Method

Version 130.1.90
Continues the request, optionally modifying some of its parameters.

Namespace: CefSharp.DevTools.Fetch
Assembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax
public Task<DevToolsMethodResponse> ContinueRequestAsync(
	string requestId,
	string url = null,
	string method = null,
	byte[] postData = null,
	IList<HeaderEntry> headers = null,
	bool? interceptResponse = null
)

Parameters

requestId  String
An id the client received in requestPaused event.
url  String  (Optional)
If set, the request url will be modified in a way that's not observable by page.
method  String  (Optional)
If set, the request method is overridden.
postData  Byte  (Optional)
If set, overrides the post data in the request.
headers  IListHeaderEntry  (Optional)
If set, overrides the request headers. Note that the overrides do notextend to subsequent redirect hops, if a redirect happens. Another overridemay be applied to a different request produced by a redirect.
interceptResponse  NullableBoolean  (Optional)
If set, overrides response interception behavior for this request.

Return Value

TaskDevToolsMethodResponse
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also