Qual é a diferença entre [AcceptVerbs (HttpVerbs.Post)] e [HttpPost]?

Posso decorar uma ação com o [AcceptVerbs (HttpVerbs.Post)] / [AcceptVerbs (HttpVerbs.Get)]

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(string title)
{
    // Do Something...
}

ou com os atributos [HttpPost] / [HttpGet]

[HttpPost]
public ActionResult Create(string title)
{
    // Do Something...
}

Eles são diferentes?

questionAnswers(1)

yourAnswerToTheQuestion