public void Dispose()

in src/CosmosCache.cs [60:75]


        public void Dispose()
        {
            if (this.isDisposed)
            {
                return;
            }

            if (this.initializedClient && this.cosmosClient != null)
            {
                this.cosmosClient.Dispose();
            }

            this.monitorListener?.Dispose();

            this.isDisposed = true;
        }