Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. mapRequestHeaders :: (RequestHeaders -> RequestHeaders) -> Request -> Request

    wai Network.Wai

    Apply the provided function to the request header list of the Request.

  2. modifyRequest :: (Request -> Request) -> Middleware

    wai Network.Wai

    Apply a function that modifies a request as a Middleware

  3. 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.

  4. requestBodyLength :: Request -> RequestBodyLength

    wai Network.Wai

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

  5. requestHeaderHost :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the Host header in a HTTP request.

  6. requestHeaderRange :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the Range header in a HTTP request.

  7. requestHeaderReferer :: Request -> Maybe ByteString

    wai Network.Wai

    The value of the Referer header in a HTTP request.

  8. requestHeaderUserAgent :: Request -> Maybe ByteString

    wai Network.Wai

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

  9. requestHeaders :: Request -> RequestHeaders

    wai Network.Wai

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

  10. requestMethod :: Request -> Method

    wai Network.Wai

    Request method such as GET.

Page 156 of many | Previous | Next