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