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