RoleExists() public method

public RoleExists ( string roleName ) : bool
roleName string
return bool
Ejemplo n.º 1
0
 public static bool RoleExist(string role)
 {
     CodeFirstRoleProvider rp = new CodeFirstRoleProvider();
     return rp.RoleExists(role);
 }