Table of Contents

Method CollectionExistsAsync

Namespace
LMKit.Data.Storage
Assembly
LM-Kit.NET.dll

CollectionExistsAsync(string, CancellationToken)

Asynchronously checks if a collection with the specified identifier exists in the storage system.

Task<bool> CollectionExistsAsync(string collectionIdentifier, CancellationToken cancellationToken = default)

Parameters

collectionIdentifier string

The unique identifier (name) of the collection to check. Implementations may throw an exception if this is null or empty.

cancellationToken CancellationToken

A token that can be used to cancel the asynchronous operation.

Returns

Task<bool>

A task representing the asynchronous operation. The task result is true if the collection exists; otherwise, false.