(Choose 1 answer)
A binding source attribute defines the location at which an action parameter's value is found. Choose the incorrect information about binding source attribute.
A. [FromBody] - Gets values from the response body.
B. [FromForm] - Gets values from posted form fields.
C. [FromQuery] - Gets values from the query string.
D. [FromRoute] - Gets values from route data.
E. [FromHeader] - Gets values from HTTP headers.
Q: 11