Click or drag to resize

FetchClientGetResponseBodyAsync Method

Version 86.0.240
Causes the body of the response to be received from the server and returned as a single string. May only be issued for a request that is paused in the Response stage and is mutually exclusive with takeResponseBodyForInterceptionAsStream. Calling other methods that affect the request or disabling fetch domain before body is received results in an undefined behavior.

Namespace:  CefSharp.DevTools.Fetch
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public Task<GetResponseBodyResponse> GetResponseBodyAsync(
	string requestId
)

Parameters

requestId
Type: SystemString
Identifier for the intercepted request to get body for.

Return Value

Type: TaskGetResponseBodyResponse
returns System.Threading.Tasks.Task<GetResponseBodyResponse>
See Also