IOptionsMonitorCache<TOptions> 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
由 IOptionsMonitor<TOptions> 用來快取 TOptions
執行個體。
generic <typename TOptions>
where TOptions : classpublic interface class IOptionsMonitorCache
public interface IOptionsMonitorCache<TOptions> where TOptions : class
type IOptionsMonitorCache<'Options (requires 'Options : null)> = interface
Public Interface IOptionsMonitorCache(Of TOptions)
類型參數
- TOptions
要求的選項類型。
- 衍生
方法
Clear() |
從快取清除所有選項執行個體。 |
GetOrAdd(String, Func<TOptions>) |
取得具名選項執行個體,或使用 |
TryAdd(String, TOptions) |
嘗試將新選項新增至快取;若名稱已存在,將會傳回 false。 |
TryRemove(String) |
嘗試移除選項執行個體。 |