Class FailedRequestInfo
public sealed record FailedRequestInfo : IEquatable<FailedRequestInfo>
- Inheritance
-
FailedRequestInfo
- Implements
- Inherited Members
Constructors
FailedRequestInfo(string, string)
public FailedRequestInfo(string Url, string FailureMessage)
Parameters
UrlstringThe URL that failed to load.
FailureMessagestringThe failure message for the failed request.
Properties
FailureMessage
The failure message for the failed request.
public string FailureMessage { get; init; }
Property Value
RequestId
public RequestId? RequestId { get; init; }
Property Value
Url
The URL that failed to load.
public string Url { get; init; }