Gets and sets the body data to send with this request.
# Get the value of the property.propertyValue = httpRequest_var.data# Set the value of the property.httpRequest_var.data = propertyValue
#include <Core/Application/HttpRequest.h>// Get the value of the property.string propertyValue = httpRequest_var->data();// Set the value of the property, where value_var is a string.bool returnValue = httpRequest_var->data(value_var);