BgEngine.Security.Services.CodeFirstRoleServices.GetUsersInRole C# (CSharp) Method

GetUsersInRole() public static method

public static GetUsersInRole ( string role ) : string[]
role string
return string[]
        public static string[] GetUsersInRole(string role)
        {
            CodeFirstRoleProvider rp = new CodeFirstRoleProvider();
            return rp.GetUsersInRole(role);
        }