Class DeviceBoundSessionFailedRequest
Details about a failed device bound session network request.
public sealed record DeviceBoundSessionFailedRequest : IEquatable<DeviceBoundSessionFailedRequest>
- Inheritance
-
DeviceBoundSessionFailedRequest
- Implements
- Inherited Members
Constructors
DeviceBoundSessionFailedRequest(string)
Details about a failed device bound session network request.
public DeviceBoundSessionFailedRequest(string RequestUrl)
Parameters
RequestUrlstringThe failed request URL.
Properties
NetError
The net error of the response if it was not OK.
public string? NetError { get; init; }
Property Value
RequestUrl
The failed request URL.
public string RequestUrl { get; init; }
Property Value
ResponseError
The response code if the net error was OK and the response code was not 200.
public long? ResponseError { get; init; }
Property Value
- long?
ResponseErrorBody
The body of the response if the net error was OK, the response code was not 200, and the response body was not empty.
public string? ResponseErrorBody { get; init; }