Can someone point me to or show me a proper PUT example?
Everything I’ve come across has been inconsistent.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Thinking that you are already in controller….
or
In the second example MVC framework knows that this is [Put] based on the Method name. So you don’t need to decorate it with [HttpPut]
or
Sounds stupid but works just like the one above. Again, MVC framework knows that this is [Put] based on the Method name, because it starts with “Put”.