public static Task DropAsync(this IBucketManager bucketManager, string bucketName, Action <DropBucketOptions> configureOptions) { var options = new DropBucketOptions(); configureOptions(options); return(bucketManager.DropAsync(bucketName, options)); }
public static Task DropAsync(this IBucketManager bucketManager, string bucketName) { return(bucketManager.DropAsync(bucketName, DropBucketOptions.Default)); }