foundResourceDoesNotSupportMethod constant
int
const foundResourceDoesNotSupportMethod
Value for found when the resource exists but has no such HTTP method.
That is, the URI path matched the pattern in one or more rules. But those rules were not for the same HTTP method.
This should result in a HTTP 405 Method Not Allowed status in the
HTTP response (which means "the server knows the request method, but the
target resource doesn't support this method") and MUST include Allow
headers indicating which methods are allowed.
See developer.mozilla.org/en-US/docs/Web/HTTP/Status/405 for details.
Implementation
static const int foundResourceDoesNotSupportMethod = 0;