Class CompilationCacheParams
Per-script compilation cache parameters for Page.produceCompilationCache
public sealed record CompilationCacheParams : IEquatable<CompilationCacheParams>
- Inheritance
-
CompilationCacheParams
- Implements
- Inherited Members
Constructors
CompilationCacheParams(string)
Per-script compilation cache parameters for Page.produceCompilationCache
public CompilationCacheParams(string Url)
Parameters
UrlstringThe URL of the script to produce a compilation cache entry for.
Properties
Eager
A hint to the backend whether eager compilation is recommended. (the actual compilation mode used is upon backend discretion).
public bool? Eager { get; init; }
Property Value
- bool?
Url
The URL of the script to produce a compilation cache entry for.
public string Url { get; init; }