LaunchDarkly OpenFeature provider for the Server-Side SDK for .NET
Search Results for

    Show / Hide Table of Contents

    Interface ICache<K, V>

    Inherited Members
    IDisposable.Dispose()
    Namespace: LaunchDarkly.Cache
    Assembly: LaunchDarkly.Cache.dll
    Syntax
    public interface ICache<K, V> : IDisposable
    Type Parameters
    Name Description
    K
    V

    Methods

    Clear()

    Declaration
    void Clear()

    ContainsKey(K)

    Declaration
    bool ContainsKey(K key)
    Parameters
    Type Name Description
    K key
    Returns
    Type Description
    bool

    Get(K)

    Declaration
    V Get(K key)
    Parameters
    Type Name Description
    K key
    Returns
    Type Description
    V

    Remove(K)

    Declaration
    void Remove(K key)
    Parameters
    Type Name Description
    K key

    Set(K, V)

    Declaration
    void Set(K key, V value)
    Parameters
    Type Name Description
    K key
    V value

    TryGetValue(K, out V)

    Declaration
    bool TryGetValue(K key, out V value)
    Parameters
    Type Name Description
    K key
    V value
    Returns
    Type Description
    bool
    In this article
    Back to top Generated by DocFX