BgEngine.Security.Services.CodeFirstRoleServices.RemoveUsersFromRoles C# (CSharp) Méthode

RemoveUsersFromRoles() public static méthode

public static RemoveUsersFromRoles ( string usernames, string rolenames ) : void
usernames string
rolenames string
Résultat void
        public static void RemoveUsersFromRoles(string[] usernames, string[] rolenames)
        {
            CodeFirstRoleProvider rp = new CodeFirstRoleProvider();
            rp.RemoveUsersFromRoles(usernames, rolenames);
        }