ServerHttpRequestBuilder

Fluent interface for building ServerHttpRequest objects.

Members

Functions

build
ServerHttpRequest build()
Undocumented in source. Be warned that the author may not have intended to support it.
withBody
ref withBody(string bodyStr)
Undocumented in source. Be warned that the author may not have intended to support it.
withBody
ref withBody(ubyte[] bodyBytes)
Undocumented in source. Be warned that the author may not have intended to support it.
withClientAddress
ref withClientAddress(ClientAddress addr)
Undocumented in source. Be warned that the author may not have intended to support it.
withContextData
ref withContextData(string key, Object obj)
Undocumented in source. Be warned that the author may not have intended to support it.
withHeader
ref withHeader(string headerName, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
withInputStream
ref withInputStream(S stream)
Undocumented in source. Be warned that the author may not have intended to support it.
withMethod
ref withMethod(string method)
Undocumented in source. Be warned that the author may not have intended to support it.
withQueryParam
ref withQueryParam(string paramName, string value)
Undocumented in source. Be warned that the author may not have intended to support it.
withUrl
ref withUrl(string url)
Undocumented in source. Be warned that the author may not have intended to support it.
withVersion
ref withVersion(HttpVersion httpVersion)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

clientAddress
ClientAddress clientAddress;
Undocumented in source.
contextData
Object[string] contextData;
Undocumented in source.
headers
string[][string] headers;
Undocumented in source.
httpVersion
HttpVersion httpVersion;
Undocumented in source.
inputStream
InputStream!ubyte inputStream;
Undocumented in source.
method
string method;
Undocumented in source.
queryParams
QueryParameter[] queryParams;
Undocumented in source.
url
string url;
Undocumented in source.