Gets an array of user names in a role where the user name contains the specified user name to match.
![]()
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 SqlRoleProvider.FindUsersInRole(string, string) method is called by the System.Web.Security.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. The System.Web.Security.SqlRoleProvider searches for a user name that matches the usernameToMatch parameter value using the LIKE keyword and supports SQL Server wildcard characters. For example, if the usernameToMatch parameter is set to "user1", then membership information for the user with the user name of "user1" is returned, if it exists. If the usernameToMatch parameter is set to "user%", then membership information for users with the user name of "user1", "user2", "user_admin", and so on are returned.