Class CacheStatusOutput
Output data transfer object containing cache status information for an asset.
Provides current state and size information as part of cache query responses.
Inherited Members
Namespace: Serenity.AssetPrefetcher.Application.UseCases.Dto
Assembly: Serenity.AssetPrefetcher.Application.dll
Syntax
public class CacheStatusOutput
Constructors
CacheStatusOutput()
Declaration
public CacheStatusOutput()
Properties
ApproxSizeBytes
Declaration
public int ApproxSizeBytes { get; set; }
Property Value
| Type | Description |
|---|---|
| int | Approximate size of the asset in bytes (may be estimated). |
IsLoading
Declaration
public bool IsLoading { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Indicates whether the asset is currently being loaded into cache. |
IsReady
Declaration
public bool IsReady { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Indicates whether the asset is fully loaded and ready for use. |