Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. postRequestWithBody :: String -> String -> String -> Request_String

    HTTP Network.HTTP

    A convenience constructor for a POST Request. It constructs a request and sets the body as well as the Content-Type and Content-Length headers. The contents of the body are forced to calculate the value for the Content-Length header. If the URL isn't syntactically valid, the function raises an error.

  2. type HTTPRequest a = Request a

    HTTP Network.HTTP.Base

    No documentation available.

  3. data NormalizeRequestOptions ty

    HTTP Network.HTTP.Base

    NormalizeRequestOptions brings together the various defaulting/normalization options over Requests. Use defaultNormalizeRequestOptions for the standard selection of option

  4. NormalizeRequestOptions :: Bool -> Bool -> Maybe String -> [RequestNormalizer ty] -> NormalizeRequestOptions ty

    HTTP Network.HTTP.Base

    No documentation available.

  5. data Request a

    HTTP Network.HTTP.Base

    An HTTP Request. The Show instance of this type is used for message serialisation, which means no body data is output.

  6. Request :: URI -> RequestMethod -> [Header] -> a -> Request a

    HTTP Network.HTTP.Base

    No documentation available.

  7. type RequestData = (RequestMethod, URI, [Header])

    HTTP Network.HTTP.Base

    RequestData contains the head of a HTTP request; method, its URL along with the auxiliary/supporting header data.

  8. data RequestMethod

    HTTP Network.HTTP.Base

    The HTTP request method, to be used in the Request object. We are missing a few of the stranger methods, but these are not really necessary until we add full TLS.

  9. type RequestNormalizer ty = NormalizeRequestOptions ty -> Request ty -> Request ty

    HTTP Network.HTTP.Base

    RequestNormalizer is the shape of a (pure) function that rewrites a request into some normalized form.

  10. type Request_String = Request String

    HTTP Network.HTTP.Base

    No documentation available.

Page 279 of many | Previous | Next