Click or drag to resize

FetchClientContinueRequestAsync Method

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

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

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.

Return Value

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