Class CachedResource
Information about the cached resource.
public sealed class CachedResource
- Inheritance
-
CachedResource
- Inherited Members
Properties
BodySize
Cached response body size.
[JsonPropertyName("bodySize")]
public double BodySize { get; set; }
Property Value
Response
Cached response data.
[JsonPropertyName("response")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public Response? Response { get; set; }
Property Value
Type
Type of this resource.
[JsonPropertyName("type")]
public ResourceType Type { get; set; }
Property Value
Url
Resource URL. This is the url of the original network request.
[JsonPropertyName("url")]
public string Url { get; set; }