Interface IBucketManager
Assembly: Couchbase.NetClient.dll
Syntax
public interface IBucketManager
Methods
|
Edit this page
View Source
CreateBucketAsync(BucketSettings, CreateBucketOptions?)
Declaration
Task CreateBucketAsync(BucketSettings settings, CreateBucketOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropBucketAsync(string, DropBucketOptions?)
Declaration
Task DropBucketAsync(string bucketName, DropBucketOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
FlushBucketAsync(string, FlushBucketOptions?)
Declaration
Task FlushBucketAsync(string bucketName, FlushBucketOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetAllBucketsAsync(GetAllBucketsOptions?)
Declaration
Task<Dictionary<string, BucketSettings>> GetAllBucketsAsync(GetAllBucketsOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetBucketAsync(string, GetBucketOptions?)
Declaration
Task<BucketSettings> GetBucketAsync(string bucketName, GetBucketOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
UpdateBucketAsync(BucketSettings, UpdateBucketOptions?)
Declaration
Task UpdateBucketAsync(BucketSettings settings, UpdateBucketOptions? options = null)
Parameters
Returns
Extension Methods