Interface ICacheable

A cacheable metadata item. Can be used with LoadAssemblyCache<T>(String) and SaveAssemblyCache<T>(String, Dictionary<String, List<T>>) to cache plugin metadata.

Namespace: BepInEx.Bootstrap
Assembly: BepInEx.dll
Syntax
public interface ICacheable

Methods

Load(BinaryReader)

Loads the object from binary format.

Declaration
void Load(BinaryReader br)
Parameters
Type Name Description
System.IO.BinaryReader br

Save(BinaryWriter)

Serialize the object into a binary format.

Declaration
void Save(BinaryWriter bw)
Parameters
Type Name Description
System.IO.BinaryWriter bw