FetchClientContinueRequestAsync Method  | 
Version 92.0.260 
            Continues the request, optionally modifying some of its parameters.
            
 
    Namespace: 
   CefSharp.DevTools.Fetch
    Assembly:
   CefSharp (in CefSharp.dll) Version: 92.0.260.0 (92.0.260.0)
Syntaxpublic Task<DevToolsMethodResponse> ContinueRequestAsync(
	string requestId,
	string url = null,
	string method = null,
	byte[] postData = null,
	IList<HeaderEntry> headers = null
)
public:
Task<DevToolsMethodResponse^>^ ContinueRequestAsync(
	String^ requestId, 
	String^ url = nullptr, 
	String^ method = nullptr, 
	array<unsigned char>^ postData = nullptr, 
	IList<HeaderEntry^>^ headers = 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. 
Return Value
Type: 
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also