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

RemoveUsersFromRoles() public static method

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