Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 123]
 NxxhrMain library namespace
 Nutil
 Curl_partsParts of a parsed url
 CAuthenticationSome Web APIs requires authenticating via HTTP Basic auth ( i.e. base64 encoded user and password authentication)
 CBearerSome Web APIs requires authenticating via HTTP Basic auth ( i.e. base64 encoded user and password authentication)
 CBodyThe body sent with the request. Typically useful in xxhr::POST context but can be used in any request type
 CBufferIn memory buffer to send in an xxhr::Multipart
 CDigestSome Web APIs requires authenticating via HTTP Digest auth ( i.e. MD5 hashed user and password )
 CErrorRepresents Errors happening at a lower layer than HTTP
 CFileLocal file path to send in an xxhr::Multipart
 CMaxRedirectsHTTP servers can reply with http redirection header, to avoid infinite redirection client application can define a maximum redirect count. By default when not supplied std::numeric_limits<std::int32_t>::max() is used as maximum redirection
 CMultipartAllows to specify HTTP Multipart requests. Useful in xxhr::POST context to perform data upload
 CParametersAllows passing an initializer list of named HTTP Parameters that will be URL Encoded within the request URI or xxhr::Body ( i.e. In the form your/url?param=value)
 CPartBuffer or File part of an xxhr::Multipart transfer
 CResponsePassed to the unary callback xxhr::on_response. Provides access to request Content and Success, HTTP Status Codes or Errors
 CsyncHelper object for the non-recommended good old synchronous way of thinking
 CTimeoutA timeout specification to cut short slow HTTP queries