Method | Description | |
---|---|---|
AddUsersToRoles ( string usernames, string roleNames ) : void |
Adds the given users to a given role. A user can have only one role so if you call this method with more than one role an exception will be thrown.
|
|
CreateRole ( string roleName ) : void | ||
DeleteRole ( string roleName, bool throwOnPopulatedRole ) : bool | ||
FindUsersInRole ( string roleName, string usernameToMatch ) : string[] |
Gets an array of user names in a role where the user name contains the specified user name to match.
|
|
GetAllRoles ( ) : string[] | ||
GetRolesForUser ( string username ) : string[] | ||
GetUsersInRole ( string roleName ) : string[] | ||
IsUserInRole ( string username, string roleName ) : bool | ||
RemoveUsersFromRoles ( string usernames, string roleNames ) : void |
Removes the given users from a given role. A user can have only one role so if you call this method with more than one role an exception will be thrown.
|
|
RoleExists ( string roleName ) : bool |
public AddUsersToRoles ( string usernames, string roleNames ) : void | ||
usernames | string | an array of userNames |
roleNames | string | an array of roleNames (only 1 role is supported). |
return | void |
public DeleteRole ( string roleName, bool throwOnPopulatedRole ) : bool | ||
roleName | string | |
throwOnPopulatedRole | bool | |
return | bool |
public FindUsersInRole ( string roleName, string usernameToMatch ) : string[] | ||
roleName | string | |
usernameToMatch | string | |
return | string[] |
public GetRolesForUser ( string username ) : string[] | ||
username | string | |
return | string[] |
public GetUsersInRole ( string roleName ) : string[] | ||
roleName | string | |
return | string[] |
public IsUserInRole ( string username, string roleName ) : bool | ||
username | string | |
roleName | string | |
return | bool |
public RemoveUsersFromRoles ( string usernames, string roleNames ) : void | ||
usernames | string | an array of userNames |
roleNames | string | an array of roleNames (only 1 role is supported). |
return | void |