Table of Contents

Class ConfigCache

Namespace
Framework.Systems.Config
Assembly
Assembly-CSharp.dll

설정 캐시 레이어. 동일 key 반복 로드 방지. ConfigLoader 내부 전용.

public class ConfigCache
Inheritance
object
ConfigCache

Methods

Add(string, object)

public void Add(string key, object value)

Parameters

key string
value object

Clear()

전체 캐시 무효화. 신중하게 호출.

public void Clear()

TryGet<T>(string, out T)

public bool TryGet<T>(string key, out T value) where T : class

Parameters

key string
value T

Returns

bool

Type Parameters

T