Bundle HTTP server framework. WebServer registers route handlers for GET/POST/PUT/DELETE, parses query params and multipart form data, and supports OAuth token exchange. Compile with -lib net_server.
MultipartContent
Multipart content
Operations
GetContent #
Get MIME content
method : public : GetContent() ~ Byte[]Return
| Type | Description |
|---|---|
| Byte | MIME bytes |
GetHeader #
Get MIME content header
method : public : GetHeader(name:String) ~ StringParameters
| Name | Type | Description |
|---|---|---|
| name | String | header name |
Return
| Type | Description |
|---|---|
| String | header value |
GetHeaderNames #
Get MIME content header names
method : public : GetHeaderNames() ~ Vector<String>Return
| Type | Description |
|---|---|
| Vector<String> | header names |
GetHeaders #
Get MIME content headers
method : public : GetHeaders() ~ Map<String,String>Return
| Type | Description |
|---|---|
| Map<String,String> | content headers |