Enum HttpServerOption
Disabling unneeded features can speed up the server or reduce its memory usage.
The enum base type is
int
.
Enum members
Name | Description |
---|---|
None | |
ParseURL | Fills the .path, .queryString fields in the request |
ParseQueryString | Fills the .query field in the request |
ParseFormBody | Fills the .form field in the request |
ParseJsonBody | Fills the .json field in the request |
ParseMultiPartBody | Enables use of the .nextPart() method in the request |
ParseCookies | Fills the .cookies field in the request |
Authors
Sönke Ludwig, Jan Krüger
Copyright
© 2012 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.