Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. RequestBodyIO :: IO RequestBody -> RequestBody

    http-client Network.HTTP.Client

    Allows creation of a RequestBody inside the IO monad, which is useful for making easier APIs (like setRequestBodyFile).

  2. RequestBodyLBS :: ByteString -> RequestBody

    http-client Network.HTTP.Client

    No documentation available.

  3. RequestBodyStream :: Int64 -> GivesPopper () -> RequestBody

    http-client Network.HTTP.Client

    No documentation available.

  4. RequestBodyStreamChunked :: GivesPopper () -> RequestBody

    http-client Network.HTTP.Client

    No documentation available.

  5. WrongRequestBodyStreamSize :: Word64 -> Word64 -> HttpExceptionContent

    http-client Network.HTTP.Client

    The request body provided did not match the expected size. Provides the expected and actual size.

  6. defaultRequest :: Request

    http-client Network.HTTP.Client

    A default request value, a GET request of localhost/:80, with an empty request body. Note that the default checkResponse does nothing.

  7. getOriginalRequest :: Response a -> Request

    http-client Network.HTTP.Client

    Retrieve the orignal Request from a Response Note that the requestBody is not available and always set to empty.

  8. hrFinalRequest :: HistoriedResponse body -> Request

    http-client Network.HTTP.Client

    The final request performed. Since 0.4.1

  9. insertCookiesIntoRequest :: Request -> CookieJar -> UTCTime -> (Request, CookieJar)

    http-client Network.HTTP.Client

    This applies the computeCookieString to a given Request

  10. managerModifyRequest :: ManagerSettings -> Request -> IO Request

    http-client Network.HTTP.Client

    Perform the given modification to a Request before performing it. This function may be called more than once during request processing. see https://github.com/snoyberg/http-client/issues/350 Default: no modification Since 0.4.4

Page 159 of many | Previous | Next