RoleProvider::RemoveUsersFromRoles Method (array<String^>^, array<String^>^)
Removes the specified user names from the specified roles for the configured applicationName.
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
public: virtual void RemoveUsersFromRoles( array<String^>^ usernames, array<String^>^ roleNames ) abstract
Parameters
- usernames
-
Type:
array<System::String^>^
A string array of user names to be removed from the specified roles.
- roleNames
-
Type:
array<System::String^>^
A string array of role names to remove the specified user names from.
RemoveUsersFromRoles is called by RemoveUserFromRole , RemoveUsersFromRole , RemoveUserFromRoles , and RemoveUsersFromRoles methods of the Roles class to remove the specified users from the specified roles at the data source. Only roles for the configured ApplicationName are modified.
If any of the specified role names are not found for the configured applicationName, we recommend that your provider throw a ProviderException.
If any of the specified user names are not associated with any of the specified role names for the configured applicationName, we recommend that your provider throw a ProviderException.
If any of the specified user names is null or is an empty string, we recommend that your provider throw an exception.
If any of the specified role names is null or is an empty string, we recommend that your provider throw an exception.
If your data source supports transactions, we recommend that you include each remove operation in a transaction and that you roll back the transaction and throw an exception if any remove operation fails.
Available since 2.0