Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. setCookieDomain :: SetCookie -> Maybe ByteString

    scotty Web.Scotty.Cookie

    The domain for which the cookie should be sent. Default value: Nothing (The browser defaults to the current domain).

  2. setCookieExpires :: SetCookie -> Maybe UTCTime

    scotty Web.Scotty.Cookie

    The time at which to expire the cookie. Default value: Nothing (The browser will default to expiring a cookie when the browser is closed).

  3. setCookieHttpOnly :: SetCookie -> Bool

    scotty Web.Scotty.Cookie

    Marks the cookie as "HTTP only", i.e. not accessible from Javascript. Default value: False

  4. setCookieMaxAge :: SetCookie -> Maybe DiffTime

    scotty Web.Scotty.Cookie

    The maximum time to keep the cookie, in seconds. Default value: Nothing (The browser defaults to expiring a cookie when the browser is closed).

  5. setCookieName :: SetCookie -> ByteString

    scotty Web.Scotty.Cookie

    The name of the cookie. Default value: "name"

  6. setCookiePath :: SetCookie -> Maybe ByteString

    scotty Web.Scotty.Cookie

    The URL path for which the cookie should be sent. Default value: Nothing (The browser defaults to the path of the request that sets the cookie).

  7. setCookieSameSite :: SetCookie -> Maybe SameSiteOption

    scotty Web.Scotty.Cookie

    The "same site" policy of the cookie, i.e. whether it should be sent with cross-site requests. Default value: Nothing

  8. setCookieSecure :: SetCookie -> Bool

    scotty Web.Scotty.Cookie

    Instructs the browser to only send the cookie over HTTPS. Default value: False

  9. setCookieValue :: SetCookie -> ByteString

    scotty Web.Scotty.Cookie

    The value of the cookie. Default value: "value"

  10. setSimpleCookie :: forall (m :: Type -> Type) . MonadIO m => Text -> Text -> ActionT m ()

    scotty Web.Scotty.Cookie

    makeSimpleCookie and setCookie combined.

Page 315 of many | Previous | Next