Property | Description |
---|---|
Consumes | A filter that specifies both the expected type that the action receives and the supported request content types. ContentTypes are used to select an action when there are multiple matches. This can be a list of ContentTypes separated by a comma. |
Produces | A filter that specifies both the expected type that the action returns, and the supported response content types. The ContentTypes value is used to set content type. This can be a list of ContentTypes separated by a comma. |
RequestSizeLimit | Sets the request body size limit to a specified size. Note: If you do not specify a value, the request body size limit uses the default value set by the ASP.NET Core framework. |
RequireHttps | An authorization filter that confirms if HTTP is used to send and receive data. |
ResponseTypes | A collection of response types and status codes returned by the Web API endpoint. |
ValidateAntiForgeryToken | An attribute that causes validation of anti-forgery tokens for all insecure HTTP methods. An anti-forgery token is required for HTTP methods other than GET, HEAD, OPTIONS, and TRACE. |