Class CachedAssembly<T>

A cached assembly.

Inheritance
System.Object CachedAssembly<T>
Inherited Members
System.Object.ToString() System.Object.Equals(System.Object) System.Object.Equals(System.Object, System.Object) System.Object.ReferenceEquals(System.Object, System.Object) System.Object.GetHashCode() System.Object.GetType() System.Object.MemberwiseClone()
Namespace: BepInEx.Bootstrap
Assembly: BepInEx.dll
Syntax
public class CachedAssembly<T>
    where T : ICacheable
Type Parameters
Name Description
T

Properties

CacheItems

List of cached items inside the assembly.

Declaration
public List<T> CacheItems { get; set; }
Property Value
Type Description
System.Collections.Generic.List<T>

Timestamp

Timestamp of the assembly. Used to check the age of the cache.

Declaration
public long Timestamp { get; set; }
Property Value
Type Description
System.Int64