Class BackForwardCacheBlockingDetails
public sealed record BackForwardCacheBlockingDetails : IEquatable<BackForwardCacheBlockingDetails>
- Inheritance
-
BackForwardCacheBlockingDetails
- Implements
- Inherited Members
Constructors
BackForwardCacheBlockingDetails(long, long)
public BackForwardCacheBlockingDetails(long LineNumber, long ColumnNumber)
Parameters
LineNumberlongLine number in the script (0-based).
ColumnNumberlongColumn number in the script (0-based).
Properties
ColumnNumber
Column number in the script (0-based).
public long ColumnNumber { get; init; }
Property Value
Function
Function name where blockage happened. Optional because of anonymous functions and tests.
public string? Function { get; init; }
Property Value
LineNumber
Line number in the script (0-based).
public long LineNumber { get; init; }
Property Value
Url
Url of the file where blockage happened. Optional because of tests.
public string? Url { get; init; }