Method

Enumeration of all possible HTTP request methods as unsigned integer values for efficient logic.

https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods

Values

ValueMeaning
GET1 << 0
POST1 << 2
PUT1 << 3
DELETE1 << 4
CONNECT1 << 5
OPTIONS1 << 6
TRACE1 << 7
PATCH1 << 8