I'm aware that you can do this:
public ActionResult DoSomething([Bind(Exclude = "CreationDate")] Item item)
{ /*...*/ }
However, I found that you can also attach that Bind attribute on top of the method, e.g.
[Bind(Exclude = "CreationDate")]
public ActionResult DoSomething(Item item)
{ /*...*/ }
Does this have the exact same effect? What if you bind to more than one parameter?