GetUsersInRole Method

MySQL Connector/Net

Gets the users in role.

Namespace:  MySql.Web.Security
Assembly:  MySql.Web (in MySql.Web.dll) Version: 6.2.2.0

Syntax

C#
public override string[] GetUsersInRole(
	string rolename
)
Visual Basic (Declaration)
Public Overrides Function GetUsersInRole ( _
	rolename As String _
) As String()
Visual C++
public:
virtual array<String^>^ GetUsersInRole(
	String^ rolename
) override

Parameters

rolename
Type: System..::.String
The rolename.

Return Value

A string array containing the names of all the users who are members of the specified role.

See Also