Class FrameResource
Information about the Resource on the page.
public sealed record FrameResource : IEquatable<FrameResource>
- Inheritance
-
FrameResource
- Implements
- Inherited Members
Constructors
FrameResource(string, ResourceType, string)
Information about the Resource on the page.
public FrameResource(string Url, ResourceType Type, string MimeType)
Parameters
UrlstringResource URL.
TypeResourceTypeType of this resource.
MimeTypestringResource mimeType as determined by the browser.
Properties
Canceled
True if the resource was canceled during loading.
public bool? Canceled { get; init; }
Property Value
- bool?
ContentSize
Resource content size.
public double? ContentSize { get; init; }
Property Value
Failed
True if the resource failed to load.
public bool? Failed { get; init; }
Property Value
- bool?
LastModified
last-modified timestamp as reported by server.
public TimeSinceEpoch? LastModified { get; init; }
Property Value
MimeType
Resource mimeType as determined by the browser.
public string MimeType { get; init; }
Property Value
Type
Type of this resource.
public ResourceType Type { get; init; }
Property Value
Url
Resource URL.
public string Url { get; init; }