vibe.http.form

Convenience functions for working with web forms.

Public Imports

vibe.inet.webform
public import vibe.inet.webform;
Undocumented in source.

Members

Functions

writeFormBody
void writeFormBody(HTTPClientRequest req, string[string] form)

Writes a vibe.http.client.HTTPClientRequest body as URL encoded form data.

writeFormBody
void writeFormBody(HTTPClientRequest req, PairRange form)

Writes a vibe.http.client.HTTPClientRequest body as URL encoded form data.

writeFormData
void writeFormData(R dst, string[string] data)

Encodes the given dictionary as URL encoded form data.

writeFormData
void writeFormData(R dst, PairRange pr)

Encodes the given ranges of Tuple!(string, string) as URL encoded form data

Structs

StringLengthCountingRange
struct StringLengthCountingRange

private

Meta

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.

Authors

Sönke Ludwig, Jan Krüger