Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. rsHeaders :: Response -> Headers

    happstack-server Happstack.Server.Internal.Types

    No documentation available.

  2. setHeader :: HasHeaders r => String -> String -> r -> r

    happstack-server Happstack.Server.Internal.Types

    Associates the key/value pair in the headers. Forces the key to be lowercase.

  3. setHeaderBS :: HasHeaders r => ByteString -> ByteString -> r -> r

    happstack-server Happstack.Server.Internal.Types

    Acts as setHeader but with ByteStrings.

  4. setHeaderUnsafe :: HasHeaders r => ByteString -> HeaderPair -> r -> r

    happstack-server Happstack.Server.Internal.Types

    Sets the key to the HeaderPair. This is the only way to associate a key with multiple values via the setHeader* functions. Does not force the key to be in lowercase or guarantee that the given key and the key in the HeaderPair will match.

  5. addHeaderM :: FilterMonad Response m => String -> String -> m ()

    happstack-server Happstack.Server.Monads

    Add headers into the response. This method does not overwrite any existing header of the same name, hence the name addHeaderM. If you want to replace a header use setHeaderM.

  6. getHeaderM :: ServerMonad m => String -> m (Maybe ByteString)

    happstack-server Happstack.Server.Monads

    Get a header out of the request.

  7. setHeaderM :: FilterMonad Response m => String -> String -> m ()

    happstack-server Happstack.Server.Monads

    Set a header into the response. This will replace an existing header of the same name. Use addHeaderM if you want to add more than one header of the same name.

  8. maxHeader :: BodyPolicy -> Int64

    happstack-server Happstack.Server.RqData

    maximum bytes of overhead for headers in multipart/form-data

  9. addHeader :: HasHeaders r => String -> String -> r -> r

    happstack-server Happstack.Server.Types

    Add a key/value pair to the header. If the key already has a value associated with it, then the value will be appended. Forces the key to be lowercase.

  10. addHeaderBS :: HasHeaders r => ByteString -> ByteString -> r -> r

    happstack-server Happstack.Server.Types

    Acts as addHeader except for ByteStrings

Page 234 of many | Previous | Next