Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. setMaxAuthAttempts :: Maybe Int -> BrowserAction t ()

    HTTP Network.Browser

    setMaxAuthAttempts mbMax sets the maximum number of authentication attempts to do. If Nothing, revert to default max.

  2. setMaxErrorRetries :: Maybe Int -> BrowserAction t ()

    HTTP Network.Browser

    setMaxErrorRetries mbMax sets the maximum number of attempts at transmitting a request. If Nothing, rever to default max.

  3. setMaxPoolSize :: Maybe Int -> BrowserAction t ()

    HTTP Network.Browser

    setMaxPoolSize maxCount sets the maximum size of the connection pool that is used to cache connections between requests

  4. setMaxRedirects :: Maybe Int -> BrowserAction t ()

    HTTP Network.Browser

    setMaxRedirects maxCount sets the maximum number of forwarding hops we are willing to jump through. A no-op if the count is negative; if zero, the max is set to whatever default applies. Notice that setting the max redirects count does not enable following of redirects itself; use setAllowRedirects to do so.

  5. setOutHandler :: (String -> IO ()) -> BrowserAction t ()

    HTTP Network.Browser

    setOutHandler sets the IO action to call when the browser chatters info on its running. To disable any such, set it to const (return ()).

  6. setProxy :: Proxy -> BrowserAction t ()

    HTTP Network.Browser

    setProxy p will disable proxy usage if p is NoProxy. If p is Proxy proxyURL mbAuth, then proxyURL is interpreted as the URL of the proxy to use, possibly authenticating via Authority information in mbAuth.

  7. setUserAgent :: String -> BrowserAction t ()

    HTTP Network.Browser

    setUserAgent ua sets the current User-Agent: string to ua. It will be used if no explicit user agent header is found in subsequent requests. A common form of user agent string is "name/version (details)". For example "cabal-install/0.10.2 (HTTP 4000.1.2)". Including the version of this HTTP package can be helpful if you ever need to track down HTTP compatibility quirks. This version is available via httpPackageVersion. For more info see http://en.wikipedia.org/wiki/User_agent.

  8. setRequestBody :: Request_String -> (String, String) -> Request_String

    HTTP Network.HTTP.Base

    No documentation available.

  9. setRequestVersion :: String -> Request a -> Request a

    HTTP Network.HTTP.Base

    setRequestVersion v req returns a new request, identical to req, but with its HTTP version set to v.

  10. setResponseVersion :: String -> Response a -> Response a

    HTTP Network.HTTP.Base

    setResponseVersion v rsp returns a new response, identical to rsp, but with its HTTP version set to v.

Page 260 of many | Previous | Next