Exemple #1
0
        public static Task <Dictionary <string, BucketSettings> > GetAllAsync(this IBucketManager bucketManager, Action <GetAllBucketOptions> configureOptions)
        {
            var options = new GetAllBucketOptions();

            configureOptions(options);

            return(bucketManager.GetAllAsync(options));
        }
Exemple #2
0
 public static Task <Dictionary <string, BucketSettings> > GetAllAsync(this IBucketManager bucketManager)
 {
     return(bucketManager.GetAllAsync(GetAllBucketOptions.Default));
 }