Click or drag to resize

ResponseReceivedExtraInfoEventArgs Class

Version 94.4.20
Fired when additional information about a responseReceived event is available from the network stack. Not every responseReceived event will have an additional responseReceivedExtraInfo for it, and responseReceivedExtraInfo may be fired before or after responseReceived.
Inheritance Hierarchy

Namespace:  CefSharp.DevTools.Network
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public class ResponseReceivedExtraInfoEventArgs : DevToolsDomainEventArgsBase

The ResponseReceivedExtraInfoEventArgs type exposes the following members.

Constructors
  NameDescription
Public methodResponseReceivedExtraInfoEventArgs
Initializes a new instance of the ResponseReceivedExtraInfoEventArgs class
Top
Properties
  NameDescription
Public propertyBlockedCookies
A list of cookies which were not stored from the response along with the corresponding reasons for blocking. The cookies here may not be valid due to syntax errors, which are represented by the invalid cookie line string instead of a proper cookie.
Public propertyHeaders
Raw response headers as they were received over the wire.
Public propertyHeadersText
Raw response header text as it was received over the wire. The raw text may not always be available, such as in the case of HTTP/2 or QUIC.
Public propertyRequestId
Request identifier. Used to match this information to another responseReceived event.
Public propertyResourceIPAddressSpace
The IP address space of the resource. The address space can only be determined once the transport established the connection, so we can't send it in `requestWillBeSentExtraInfo`.
Public propertyStatusCode
The status code of the response. This is useful in cases the request failed and no responseReceived event is triggered, which is the case for, e.g., CORS errors. This is also the correct status code for cached requests, where the status in responseReceived is a 200 and this will be 304.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also