I have a requirement to create a Get method which takes the following parameter names in the URL:
ms-scale ms-contrast ms-lang
As you can see, all the names
Use FromUriAttribute
public HttpResponseMessage Get([FromUri(Name = "ms-scale")]int scale, [FromUri(Name = "ms-contrast")]string contrast, [FromUri(Name = "ms-lang")]string lang)