"networkPreferences_var" is a variable referencing a NetworkPreferences object.
# Get the value of the property. propertyValue = networkPreferences_var.networkProxySetting
# Set the value of the property. networkPreferences_var.networkProxySetting = propertyValue
"networkPreferences_var" is a variable referencing a NetworkPreferences object.
#include <Core/Application/NetworkPreferences.h>
// Get the value of the property. NetworkProxySettings propertyValue = networkPreferences_var->networkProxySetting();
// Set the value of the property, where value_var is a NetworkProxySettings. bool returnValue = networkPreferences_var->networkProxySetting(value_var);