RoleProvider::AddUsersToRoles Method (array<String^>^, array<String^>^)
Adds the specified user names to the specified roles for the configured applicationName.
Assembly: System.Web.ApplicationServices (in System.Web.ApplicationServices.dll)
public: virtual void AddUsersToRoles( array<String^>^ usernames, array<String^>^ roleNames ) abstract
Parameters
- usernames
-
Type:
array<System::String^>^
A string array of user names to be added to the specified roles.
- roleNames
-
Type:
array<System::String^>^
A string array of the role names to add the specified user names to.
AddUsersToRoles is called by the Roles class to associate the specified users with the specified roles at the data source. Roles are added to the configured ApplicationName.
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 add operation in a transaction and that you roll back the transaction and throw an exception if any add operation fails.
Available since 2.0