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. strictRequestBody :: Request -> IO ByteString

    wai Network.Wai

    Get the request body as a lazy ByteString. However, do not use any lazy I/O, instead reading the entire body into memory strictly. Note: Since this function consumes the request body, future calls to it will return the empty string.

  2. data Request

    wai Network.Wai.Internal

    Information on the request sent by the client. This abstracts away the details of the underlying implementation.

  3. Request :: Method -> HttpVersion -> ByteString -> ByteString -> RequestHeaders -> Bool -> SockAddr -> [Text] -> Query -> IO ByteString -> Vault -> RequestBodyLength -> Maybe ByteString -> Maybe ByteString -> Maybe ByteString -> Maybe ByteString -> Request

    wai Network.Wai.Internal

    No documentation available.

  4. data RequestBodyLength

    wai Network.Wai.Internal

    The size of the request body. In the case of chunked bodies, the size will not be known.

  5. getRequestBodyChunk :: Request -> IO ByteString

    wai Network.Wai.Internal

    Get the next chunk of the body. Returns empty when the body is fully consumed.

  6. requestBody :: Request -> IO ByteString

    wai Network.Wai.Internal

    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.

  7. requestBodyLength :: Request -> RequestBodyLength

    wai Network.Wai.Internal

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

  8. requestHeaderHost :: Request -> Maybe ByteString

    wai Network.Wai.Internal

    The value of the Host header in a HTTP request.

  9. requestHeaderRange :: Request -> Maybe ByteString

    wai Network.Wai.Internal

    The value of the Range header in a HTTP request.

  10. requestHeaderReferer :: Request -> Maybe ByteString

    wai Network.Wai.Internal

    The value of the Referer header in a HTTP request.

Page 157 of many | Previous | Next