Click or drag to resize

CefSharp.DevTools.Fetch Namespace

Version 130.1.90

[Missing <summary> documentation for "N:CefSharp.DevTools.Fetch"]

Classes
 ClassDescription
Public classAuthChallenge Authorization challenge for HTTP status code 401 or 407.
Public classAuthChallengeResponse Response to an AuthChallenge.
Public classAuthRequiredEventArgs Issued when the domain is enabled with handleAuthRequests set to true. The request is paused until client responds with continueWithAuth.
Public classFetchClient A domain for letting clients substitute browser's network layer with client code.
Public classGetResponseBodyResponse GetResponseBodyResponse
Public classHeaderEntry Response HTTP header entry
Public classRequestPattern RequestPattern
Public classRequestPausedEventArgs Issued when the domain is enabled and the request URL matches the specified filter. The request is paused until the client responds with one of continueRequest, failRequest or fulfillRequest. The stage of the request can be determined by presence of responseErrorReason and responseStatusCode -- the request is at the response stage if either of these fields is present and in the request stage otherwise. Redirect responses and subsequent requests are reported similarly to regular responses and requests. Redirect responses may be distinguished by the value of `responseStatusCode` (which is one of 301, 302, 303, 307, 308) along with presence of the `location` header. Requests resulting from a redirect will have `redirectedRequestId` field set.
Public classTakeResponseBodyAsStreamResponse TakeResponseBodyAsStreamResponse
Enumerations
 EnumerationDescription
Public enumerationAuthChallengeResponseResponse The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.
Public enumerationAuthChallengeSource Source of the authentication challenge.
Public enumerationRequestStage Stages of the request to handle. Request will intercept before the request is sent. Response will intercept after the response is received (but before response body is received).