Gets and sets the proxy host.
# Get the value of the property.propertyValue = networkPreferences_var.proxyHost# Set the value of the property.networkPreferences_var.proxyHost = propertyValue
#include <Core/Application/NetworkPreferences.h>// Get the value of the property.string propertyValue = networkPreferences_var->proxyHost();// Set the value of the property, where value_var is a string.bool returnValue = networkPreferences_var->proxyHost(value_var);