Click or drag to resize

FetchClientTakeResponseBodyAsStreamAsync Method

Version 86.0.240
Returns a handle to the stream representing the response body. The request must be paused in the HeadersReceived stage. Note that after this command the request can't be continued as is -- client either needs to cancel it or to provide the response body. The stream only supports sequential read, IO.read will fail if the position is specified. This method is mutually exclusive with getResponseBody. 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<TakeResponseBodyAsStreamResponse> TakeResponseBodyAsStreamAsync(
	string requestId
)

Parameters

requestId
Type: SystemString
requestId

Return Value

Type: TaskTakeResponseBodyAsStreamResponse
returns System.Threading.Tasks.Task<TakeResponseBodyAsStreamResponse>
See Also