System.Web.Security.RoleProvider.AddUsersToRoles Method

Adds the specified user names to the specified roles for the configured applicationName.

Syntax

public abstract void AddUsersToRoles (string[] usernames, string[] rolenames)

Parameters

rolenames
Documentation for this section has not yet been entered.
usernames
A string array of user names to be added to the specified roles.

Remarks

RoleProvider.AddUsersToRoles(String[], String[]) is called by the System.Web.Security.Roles class to associate the specified users with the specified roles at the data source. Roles are added to the configured RoleProvider.ApplicationName.

If any of the specified role names are not found for the configured applicationName, we recommend that your provider throw a System.Configuration.Provider.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 System.Configuration.Provider.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.

Requirements

Namespace: System.Web.Security
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0