What exactly is the difference between
[System.Web.Http.AcceptVerbs("GET")]
public string[] SomeArray(string someString)
{
and
[System.Web.Http.HttpGet]
public string[] SomeArray(string someString)
{
and when would one use which of them, and when would one use both? I already found many examples using
[System.Web.Http.AcceptVerbs("GET")]
[System.Web.Http.HttpGet]
public string[] SomeArray(string someString)
{