Class LoadingFailedEventArgs
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
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
ErrorText
Error message. List of network errors: https://cs.chromium.org/chromium/src/net/base/net_error_list.h
[JsonPropertyName("errorText")]
public string ErrorText { get; set; }
Property Value
RequestId
Request identifier.
[JsonPropertyName("requestId")]
public string RequestId { get; set; }
Property Value
Timestamp
Timestamp.
[JsonPropertyName("timestamp")]
public double Timestamp { get; set; }
Property Value
Type
Resource type.
[JsonPropertyName("type")]
public ResourceType Type { get; set; }