Skip to content

EntropyEngine::Networking::WebDAV::WebDAVConnection::Response

EntropyEngine::Networking::WebDAV::WebDAVConnection::Response

Section titled “EntropyEngine::Networking::WebDAV::WebDAVConnection::Response”

HTTP response for aggregated operations.

#include <WebDAVConnection.h>

Name
boolisSuccess() const
Checks if response indicates success.
Name
std::stringstatusMessage
Status message or error description.
intstatusCode
HTTP status code (0 on timeout/error).
std::unordered_map< std::string, std::string >headers
Response headers (lowercase keys).
std::vector< uint8_t >body
Response body bytes.
inline bool isSuccess() const

Checks if response indicates success.

Return: true if status code is 2xx

std::string statusMessage;

Status message or error description.

int statusCode = 0;

HTTP status code (0 on timeout/error).

std::unordered_map< std::string, std::string > headers;

Response headers (lowercase keys).

std::vector< uint8_t > body;

Response body bytes.


Updated on 2026-01-26 at 17:14:35 -0500