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.Core.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>

Hash

Hash of the assembly. Used to verify that the assembly hasn't been changed.

Declaration
public string Hash { get; set; }
Property Value
Type Description
System.String