Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. setupPager :: IO ()

    hledger-lib Hledger.Utils.IO

    No documentation available.

  2. setAccept :: ByteString -> RequestBuilder ()

    http-streams Network.Http.Client

    Indicate the content type you are willing to receive in a reply from the server. For more complex Accept: headers, use setAccept'.

  3. setAccept' :: [(ByteString, Float)] -> RequestBuilder ()

    http-streams Network.Http.Client

    Indicate the content types you are willing to receive in a reply from the server in order of preference. A call of the form:

    setAccept' [("text/html", 1.0),
    ("application/xml", 0.8),
    ("*/*", 0)]
    
    will result in an Accept: header value of text/html; q=1.0, application/xml; q=0.8, */*; q=0.0 as you would expect.

  4. setAuthorizationBasic :: ByteString -> ByteString -> RequestBuilder ()

    http-streams Network.Http.Client

    Set username and password credentials per the HTTP basic authentication method.

    setAuthorizationBasic "Aladdin" "open sesame"
    
    will result in an Authorization: header value of Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==. Basic authentication does not use a message digest function to encipher the password; the above string is only base-64 encoded and is thus plain-text visible to any observer on the wire and all caches and servers at the other end, making basic authentication completely insecure. A number of web services, however, use SSL to encrypt the connection that then use HTTP basic authentication to validate requests. Keep in mind in these cases the secret is still sent to the servers on the other side and passes in clear through all layers after the SSL termination. Do not use basic authentication to protect secure or user-originated privacy-sensitve information.

  5. setContentLength :: Int64 -> RequestBuilder ()

    http-streams Network.Http.Client

    Specify the length of the request body, in bytes. RFC 2616 requires that we either send a Content-Length header or use Transfer-Encoding: chunked. If you know the exact size ahead of time, then call this function; the body content will still be streamed out by io-streams in more-or-less constant space. This function is special: in a PUT or POST request, http-streams will assume chunked transfer-encoding unless you specify a content length here, in which case you need to ensure your body function writes precisely that many bytes.

  6. setContentMultipart :: Boundary -> RequestBuilder ()

    http-streams Network.Http.Client

    If sending multipart form data (RFC 7578), you need to set the MIME type to "multipart/form-data" and specify the boundary separator that will be used. This function is special: you must subsequently use multipartFormBody to sequence the individual body parts. When sending the request it will separate the individual parts by the boundary value set by this function.

  7. setContentType :: ContentType -> RequestBuilder ()

    http-streams Network.Http.Client

    Set the MIME type corresponding to the body of the request you are sending. Defaults to "text/plain", so usually you need to set this if PUTting.

  8. setExpectContinue :: RequestBuilder ()

    http-streams Network.Http.Client

    Specify that this request should set the expectation that the server needs to approve the request before you send it. This function is special: in a PUT or POST request, http-streams will wait for the server to reply with an HTTP/1.1 100 Continue status before sending the entity body. This is handled internally; you will get the real response (be it successful 2xx, client error, 4xx, or server error 5xx) in receiveResponse. In theory, it should be 417 if the expectation failed. Only bother with this if you know the service you're talking to requires clients to send an Expect: 100-continue header and will handle it properly. Most servers don't do any precondition checking, automatically send an intermediate 100 response, and then just read the body regardless, making this a bit of a no-op in most cases.

  9. setHeader :: ByteString -> ByteString -> RequestBuilder ()

    http-streams Network.Http.Client

    Set a generic header to be sent in the HTTP request. The other methods in the RequestBuilder API are expressed in terms of this function, but we recommend you use them where offered for their stronger types.

  10. setHostname :: Hostname -> Port -> RequestBuilder ()

    http-streams Network.Http.Client

    Set the [virtual] hostname for the request. In ordinary conditions you won't need to call this, as the Host: header is a required header in HTTP 1.1 and is set directly from the name of the server you connected to when calling openConnection.

Page 352 of many | Previous | Next