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

RoleExist() public static method

public static RoleExist ( string role ) : bool
role string
return bool
        public static bool RoleExist(string role)
        {
            CodeFirstRoleProvider rp = new CodeFirstRoleProvider();
            return rp.RoleExists(role);
        }