Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
doc: sort authority and scheme alphabetically
  • Loading branch information
kenigbolo authored Dec 2, 2018
commit df55a21b804943eb2236cbc4cfd42f1b54912b65
40 changes: 20 additions & 20 deletions doc/api/http2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2654,6 +2654,16 @@ added: v10.1.0
The `request.aborted` property will be `true` if the request has
been aborted.

#### request.authority
<!-- YAML
added: v8.4.0
-->

* {string}

The request authority pseudo header field. It can also be accessed via
`req.headers[':authority']`.

#### request.destroy([error])
<!-- YAML
added: v8.4.0
Expand Down Expand Up @@ -2723,26 +2733,6 @@ added: v8.4.0

The request method as a string. Read-only. Examples: `'GET'`, `'DELETE'`.

#### request.authority
<!-- YAML
added: v8.4.0
-->

* {string}

The request authority psuedo header field. It can also be accessed via
`req.headers[':authority']`

#### request.scheme
<!-- YAML
added: v8.4.0
-->

* {string}

The request scheme psuedo header field indicating the scheme
portion of the target URL.

#### request.rawHeaders
<!-- YAML
added: v8.4.0
Expand Down Expand Up @@ -2782,6 +2772,16 @@ added: v8.4.0
The raw request/response trailer keys and values exactly as they were
received. Only populated at the `'end'` event.

#### request.scheme
<!-- YAML
added: v8.4.0
-->

* {string}

The request scheme pseudo header field indicating the scheme
portion of the target URL.

#### request.setTimeout(msecs, callback)
<!-- YAML
added: v8.4.0
Expand Down