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.
defaultGETRequest :: URI -> Request_StringHTTP Network.HTTP.Base No documentation available.
defaultGETRequest_ :: BufferType a => URI -> Request aHTTP Network.HTTP.Base No documentation available.
defaultNormalizeRequestOptions :: NormalizeRequestOptions tyHTTP Network.HTTP.Base No documentation available.
getRequestVersion :: Request a -> Maybe StringHTTP Network.HTTP.Base getRequestVersion req returns the HTTP protocol version of the request req. If Nothing, the default httpVersion can be assumed.
mkRequest :: BufferType ty => RequestMethod -> URI -> Request tyHTTP Network.HTTP.Base 'mkRequest method uri' constructs a well formed request for the given HTTP method and URI. It does not normalize the URI for the request _nor_ add the required Host: header. That is done either explicitly by the user or when requests are normalized prior to transmission.
normalizeRequest :: NormalizeRequestOptions ty -> Request ty -> Request tyHTTP Network.HTTP.Base normalizeRequest opts req is the entry point to use to normalize your request prior to transmission (or other use.) Normalization is controlled via the NormalizeRequestOptions record.
normalizeRequestURI :: Bool -> String -> Request ty -> Request tyHTTP Network.HTTP.Base Deprecated: Please use Network.HTTP.Base.normalizeRequest instead
parseRequestHead :: [String] -> Result RequestDataHTTP Network.HTTP.Base No documentation available.
reqURIAuth :: Request ty -> URIAuthHTTP Network.HTTP.Base No documentation available.
setRequestBody :: Request_String -> (String, String) -> Request_StringHTTP Network.HTTP.Base No documentation available.