Interface ICouchbaseCollectionManager
Assembly: Couchbase.NetClient.dll
Syntax
public interface ICouchbaseCollectionManager
Methods
|
Edit this page
View Source
CreateCollectionAsync(CollectionSpec, CreateCollectionOptions?)
Declaration
[Obsolete("Use the overload with CreateCollectionSettings instead.")]
Task CreateCollectionAsync(CollectionSpec spec, CreateCollectionOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
CreateCollectionAsync(string, string, CreateCollectionSettings, CreateCollectionOptions?)
Declaration
Task CreateCollectionAsync(string scopeName, string collectionName, CreateCollectionSettings settings, CreateCollectionOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
CreateScopeAsync(ScopeSpec, CreateScopeOptions?)
Declaration
[Obsolete("Use other overloaded CreateScopeAsync method that does not take a ScopeSpec instead.")]
Task CreateScopeAsync(ScopeSpec spec, CreateScopeOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
CreateScopeAsync(string, CreateScopeOptions?)
Declaration
Task CreateScopeAsync(string scopeName, CreateScopeOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropCollectionAsync(CollectionSpec, DropCollectionOptions?)
Declaration
[Obsolete("Use the overload that takes scope and collection names instead.")]
Task DropCollectionAsync(CollectionSpec spec, DropCollectionOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropCollectionAsync(string, string, DropCollectionOptions?)
Declaration
Task DropCollectionAsync(string scopeName, string collectionName, DropCollectionOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropScopeAsync(string, DropScopeOptions?)
Declaration
Task DropScopeAsync(string scopeName, DropScopeOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetAllScopesAsync(GetAllScopesOptions?)
Declaration
Task<IEnumerable<ScopeSpec>> GetAllScopesAsync(GetAllScopesOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetScopeAsync(string, GetScopeOptions?)
Declaration
[Obsolete("Use GetAllScopesAsync instead.")]
Task<ScopeSpec> GetScopeAsync(string scopeName, GetScopeOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
UpdateCollectionAsync(string, string, UpdateCollectionSettings, UpdateCollectionOptions?)
Declaration
Task UpdateCollectionAsync(string scopeName, string collectionName, UpdateCollectionSettings settings, UpdateCollectionOptions? options = null)
Parameters
Returns
Extension Methods