# web.method ## Function Read the current HTTP request method. ## Syntax ```bt web.method ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | String | Returns the uppercase HTTP method name. | ## Example ```bt result = web.method // Output: GET print result ``` ## Notes - The value comes from the underlying request method string.