RoleProvider.FindUsersInRole Method
.NET Framework 2.0
Gets an array of user names in a role where the user name contains the specified user name to match.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual array<String^>^ FindUsersInRole ( String^ roleName, String^ usernameToMatch ) abstract
public abstract String[] FindUsersInRole ( String roleName, String usernameToMatch )
public abstract function FindUsersInRole ( roleName : String, usernameToMatch : String ) : String[]
Not applicable.
Parameters
- roleName
The role to search in.
- usernameToMatch
The user name to search for.
Return Value
A string array containing the names of all the users where the user name matches usernameToMatch and the user is a member of the specified role.The FindUsersInRole method is called by the Roles class and returns a list of users in a role where the user name contains a match of the supplied usernameToMatch for the configured applicationName. Wildcard support is included based on the data source. Users are returned in alphabetical order by user name.
We recommend that you throw a ProviderException if roleName does not exist in the data source.
Community Additions
ADD
Show: