Skip to content

Commit b6a1860

Browse files
author
jczic
committed
update doc
1 parent 3f8a958 commit b6a1860

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,15 +1153,15 @@ except KeyboardInterrupt :
11531153
11541154
| Name | Type | Get | Set | Description |
11551155
|------------------|:------------------------------------:|:-----------------------:|:-----------------------:|---------------------------------------------------------------------------------------------|
1156-
| `Request` | [HttpRequest](#request-class) | :ballot_box_with_check: | - | *Http request related to this response.* |
1157-
| `UserAddress` | tuple | :ballot_box_with_check: | - | *User remote address of the http connection such as a tuple of `(str_ip_addr, int_port)`.* |
1158-
| `IsSSL` | bool | :ballot_box_with_check: | - | *Indicates that the http connection is secured by SSL/TLS security layer with certificate.* |
1159-
| `AllowCaching` | bool | :ballot_box_with_check: | :ballot_box_with_check: | *Indicates to the user the possible caching of this response.* |
1160-
| `ContentType` | str or None | :ballot_box_with_check: | :ballot_box_with_check: | *Type of the content of this response.* |
1161-
| `ContentCharset` | str or None | :ballot_box_with_check: | :ballot_box_with_check: | *Encoding charset used for the content of this response.* |
1162-
| `ContentLength` | int | :ballot_box_with_check: | :ballot_box_with_check: | *Length of the content of this response.* |
1163-
| `HeadersSent` | bool | :ballot_box_with_check: | - | *Indicates that response http headers was already sent.* |
1164-
| `OnSent` | [callback](#response-onsent) or None | :ballot_box_with_check: | :ballot_box_with_check: | *Callback function when response is fully sent.* |
1156+
| `Request` | [HttpRequest](#request-class) | Yes | - | *Http request related to this response.* |
1157+
| `UserAddress` | tuple | Yes | - | *User remote address of the http connection such as a tuple of `(str_ip_addr, int_port)`.* |
1158+
| `IsSSL` | bool | Yes | - | *Indicates that the http connection is secured by SSL/TLS security layer with certificate.* |
1159+
| `AllowCaching` | bool | Yes | Yes | *Indicates to the user the possible caching of this response.* |
1160+
| `ContentType` | str or None | Yes | Yes | *Type of the content of this response.* |
1161+
| `ContentCharset` | str or None | Yes | Yes | *Encoding charset used for the content of this response.* |
1162+
| `ContentLength` | int | Yes | Yes | *Length of the content of this response.* |
1163+
| `HeadersSent` | bool | Yes | - | *Indicates that response http headers was already sent.* |
1164+
| `OnSent` | [callback](#response-onsent) or None | Yes | Yes | *Callback function when response is fully sent.* |
11651165
11661166
> **Definition of the above callback functions:**
11671167

0 commit comments

Comments
 (0)