File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ Headers headers;
87
87
88
88
headers.contentType = " application/json" ;
89
89
headers.connection = " keep-alive" ;
90
- headers.cookie = " abc=def,ghi=jkl" ;
90
+ headers.cookie = " abc=def,ghi=jkl" ; // Not yet supported.
91
91
```
92
92
# Response
93
93
@@ -103,10 +103,10 @@ unsigned int[] array = response.arrayBuffer(); // Not yet supported.
103
103
bool ok = response.ok;
104
104
int status = response.status;
105
105
const char * statusText = response.statusText;
106
- bool redirected = response.redirected;
107
- const char * type = response.type;
106
+ bool redirected = response.redirected; // Not yet supported.
107
+ const char * type = response.type; // Not yet supported.
108
108
const char * response.headers.get(" content-type" );
109
- Headers headers = response.headers.raw();
110
- const char * contentTypeHeader = headers[" content-type" ];
109
+ Headers headers = response.headers.raw(); // Not yet supported
110
+ const char * contentTypeHeader = headers[" content-type" ]; // Not yet supported.
111
111
112
112
```
You can’t perform that action at this time.
0 commit comments