Interface IUserManager
Assembly: Couchbase.NetClient.dll
Syntax
public interface IUserManager
Methods
|
Edit this page
View Source
ChangeUserPasswordAsync(string, ChangePasswordOptions?)
Declaration
Task ChangeUserPasswordAsync(string password, ChangePasswordOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropGroupAsync(string, DropGroupOptions?)
Declaration
Task DropGroupAsync(string groupName, DropGroupOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
DropUserAsync(string, DropUserOptions?)
Declaration
Task DropUserAsync(string username, DropUserOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetAllGroupsAsync(GetAllGroupsOptions?)
Declaration
Task<IEnumerable<Group>> GetAllGroupsAsync(GetAllGroupsOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetAllUsersAsync(GetAllUsersOptions?)
Declaration
Task<IEnumerable<UserAndMetaData>> GetAllUsersAsync(GetAllUsersOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetGroupAsync(string, GetGroupOptions?)
Declaration
Task<Group> GetGroupAsync(string groupName, GetGroupOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetRolesAsync(AvailableRolesOptions?)
Declaration
Task<IEnumerable<RoleAndDescription>> GetRolesAsync(AvailableRolesOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
GetUserAsync(string, GetUserOptions?)
Declaration
Task<UserAndMetaData> GetUserAsync(string username, GetUserOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
UpsertGroupAsync(Group, UpsertGroupOptions?)
Declaration
Task UpsertGroupAsync(Group group, UpsertGroupOptions? options = null)
Parameters
Returns
|
Edit this page
View Source
UpsertUserAsync(User, UpsertUserOptions?)
Declaration
Task UpsertUserAsync(User user, UpsertUserOptions? options = null)
Parameters
Returns
Extension Methods