Couchbase .NET SDK | 3.4.4
Search Results for

    Show / Hide Table of Contents

    Interface IPersistentSet<TValue>

    Represents an which is persisted to a backing store.

    Namespace: Couchbase.DataStructures
    Assembly: Couchbase.NetClient.dll
    Syntax
    public interface IPersistentSet<TValue> : ISet<TValue>
    Type Parameters
    Name Description
    TValue

    Type of value in the set.

    Remarks

    If using a SystemTextJsonSerializer backed by a , be sure to include in a on the context.

    Properties

    | Improve this Doc View Source

    CountAsync

    Declaration
    Task<int> CountAsync { get; }
    Property Value
    Type Description
    Task<Int32>

    Methods

    | Improve this Doc View Source

    AddAsync(TValue)

    Declaration
    Task<bool> AddAsync(TValue item)
    Parameters
    Type Name Description
    TValue item
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    ClearAsync()

    Declaration
    Task ClearAsync()
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    ContainsAsync(TValue)

    Declaration
    Task<bool> ContainsAsync(TValue item)
    Parameters
    Type Name Description
    TValue item
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    CopyToAsync(TValue[], Int32)

    Declaration
    Task CopyToAsync(TValue[] array, int arrayIndex)
    Parameters
    Type Name Description
    TValue[] array
    Int32 arrayIndex
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    ExceptWithAsync(IEnumerable<TValue>)

    Declaration
    Task ExceptWithAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    IntersectWithAsync(IEnumerable<TValue>)

    Declaration
    Task IntersectWithAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    IsProperSubsetOfAsync(IEnumerable<TValue>)

    Declaration
    Task<bool> IsProperSubsetOfAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    IsProperSupersetOfAsync(IEnumerable<TValue>)

    Declaration
    Task<bool> IsProperSupersetOfAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    IsSubsetOfAsync(IEnumerable<TValue>)

    Declaration
    Task<bool> IsSubsetOfAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    IsSupersetOfAsync(IEnumerable<TValue>)

    Declaration
    Task<bool> IsSupersetOfAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    OverlapsAsync(IEnumerable<TValue>)

    Declaration
    Task<bool> OverlapsAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    RemoveAsync(TValue)

    Declaration
    Task<bool> RemoveAsync(TValue item)
    Parameters
    Type Name Description
    TValue item
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    SetEqualsAsync(IEnumerable<TValue>)

    Declaration
    Task<bool> SetEqualsAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task<Boolean>
    | Improve this Doc View Source

    SymmetricExceptWithAsync(IEnumerable<TValue>)

    Declaration
    Task SymmetricExceptWithAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task
    | Improve this Doc View Source

    UnionWithAsync(IEnumerable<TValue>)

    Declaration
    Task UnionWithAsync(IEnumerable<TValue> other)
    Parameters
    Type Name Description
    IEnumerable<TValue> other
    Returns
    Type Description
    Task
    • Improve this Doc
    • View Source
    In This Article
    Back to top © 2023 Couchbase, Inc.