Skip to content

Commit d20b395

Browse files
committed
getHeader
1 parent 2a02404 commit d20b395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/functions-reference-node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ The `HttpRequest` object has the following properties:
691691
| ---------------- | ------------------------ | ----------- |
692692
| **`method`** | `string` | HTTP request method used to invoke this function. |
693693
| **`url`** | `string` | Request URL. |
694-
| **`headers`** | `Record<string, string>` | HTTP request headers. This object is case sensitive. It's recommended to use `request.get('header-name')` instead, which is case insensitive. |
694+
| **`headers`** | `Record<string, string>` | HTTP request headers. This object is case sensitive. It's recommended to use `request.getHeader('header-name')` instead, which is case insensitive. |
695695
| **`query`** | `Record<string, string>` | Query string parameter keys and values from the URL. |
696696
| **`params`** | `Record<string, string>` | Route parameter keys and values. |
697697
| **`user`** | `HttpRequestUser | null` | Object representing logged-in user, either through Functions authentication, SWA Authentication, or null when no such user is logged in. |

0 commit comments

Comments
 (0)