Table of Contents

Class LoadingFailedEventArgs

Namespace
OpenQA.Selenium.DevTools.V147.Network
Assembly
Selenium.WebDriver.dll

Fired when HTTP request has failed to load.

public sealed class LoadingFailedEventArgs : EventArgs
Inheritance
LoadingFailedEventArgs
Inherited Members

Properties

BlockedReason

The reason why loading was blocked, if any.

[JsonPropertyName("blockedReason")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public BlockedReason? BlockedReason { get; set; }

Property Value

BlockedReason?

Canceled

True if loading was canceled.

[JsonPropertyName("canceled")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Canceled { get; set; }

Property Value

bool?

CorsErrorStatus

The reason why loading was blocked by CORS, if any.

[JsonPropertyName("corsErrorStatus")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CorsErrorStatus? CorsErrorStatus { get; set; }

Property Value

CorsErrorStatus

ErrorText

[JsonPropertyName("errorText")]
public string ErrorText { get; set; }

Property Value

string

RequestId

Request identifier.

[JsonPropertyName("requestId")]
public string RequestId { get; set; }

Property Value

string

Timestamp

Timestamp.

[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }

Property Value

double

Type

Resource type.

[JsonPropertyName("type")]
public ResourceType Type { get; set; }

Property Value

ResourceType