Table of Contents

Class ResponseData

Namespace
OpenQA.Selenium.BiDi.Modules.Network
Assembly
WebDriver.dll
public record ResponseData : IEquatable<ResponseData>
Inheritance
ResponseData
Implements
Inherited Members

Constructors

ResponseData(string, string, int, string, bool, IReadOnlyList<Header>, string, long, long?, long?, ResponseContent)

public ResponseData(string Url, string Protocol, int Status, string StatusText, bool FromCache, IReadOnlyList<Header> Headers, string MimeType, long BytesReceived, long? HeadersSize, long? BodySize, ResponseContent Content)

Parameters

Url string
Protocol string
Status int
StatusText string
FromCache bool
Headers IReadOnlyList<Header>
MimeType string
BytesReceived long
HeadersSize long?
BodySize long?
Content ResponseContent

Properties

AuthChallenges

[JsonInclude]
public IReadOnlyList<AuthChallenge>? AuthChallenges { get; }

Property Value

IReadOnlyList<AuthChallenge>

BodySize

public long? BodySize { get; init; }

Property Value

long?

BytesReceived

public long BytesReceived { get; init; }

Property Value

long

Content

public ResponseContent Content { get; init; }

Property Value

ResponseContent

FromCache

public bool FromCache { get; init; }

Property Value

bool

Headers

public IReadOnlyList<Header> Headers { get; init; }

Property Value

IReadOnlyList<Header>

HeadersSize

public long? HeadersSize { get; init; }

Property Value

long?

MimeType

public string MimeType { get; init; }

Property Value

string

Protocol

public string Protocol { get; init; }

Property Value

string

Status

public int Status { get; init; }

Property Value

int

StatusText

public string StatusText { get; init; }

Property Value

string

Url

public string Url { get; init; }

Property Value

string