2
Reply

Differentiate between FromURI and FromBody in ASP.NET Web API

Manoj Kalla

Manoj Kalla

6y
11.4k
2
Reply

    FromURI attribute to instruct Web API to collect or get the value of complex type from the query string.FromBody attribute instruct Web API to collect or get the value of primitive type from the request body.

    Web API gets the value of a primitive parameter from the query string and complex type parameter from the request body.