Exemple #1
0
        public static Task DropAsync(this IBucketManager bucketManager, string bucketName, Action <DropBucketOptions> configureOptions)
        {
            var options = new DropBucketOptions();

            configureOptions(options);

            return(bucketManager.DropAsync(bucketName, options));
        }
Exemple #2
0
 public static Task DropAsync(this IBucketManager bucketManager, string bucketName)
 {
     return(bucketManager.DropAsync(bucketName, DropBucketOptions.Default));
 }