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. modifyRequest :: (Request -> Request) -> Middleware

    wai Network.Wai

    Apply a function that modifies a request as a Middleware

  2. requestBody :: Request -> IO ByteString

    wai Network.Wai

    Deprecated: requestBody's name is misleading because it only gets a partial chunk of the body. Use getRequestBodyChunk instead when getting the field, and setRequestBodyChunks when setting the field.

  3. requestBodyLength :: Request -> RequestBodyLength

    wai Network.Wai

    The size of the request body. In the case of a chunked request body, this may be unknown.

  4. requestHeaderHost :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the Host header in a HTTP request.

  5. requestHeaderRange :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the Range header in a HTTP request.

  6. requestHeaderReferer :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the Referer header in a HTTP request.

  7. requestHeaderUserAgent :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the User-Agent header in a HTTP request.

  8. requestHeaders :: Request -> RequestHeaders

    wai Network.Wai

    A list of headers (a pair of key and value) in an HTTP request.

  9. requestMethod :: Request -> Method

    wai Network.Wai

    Request method such as GET.

  10. setRequestBodyChunks :: IO ByteString -> Request -> Request

    wai Network.Wai

    Set the requestBody attribute on a request without triggering a deprecation warning. The supplied IO action should return the next chunk of the body each time it is called and empty when it has been fully consumed.

Page 156 of many | Previous | Next