From: Alexander Köplinger Date: Wed, 31 May 2017 01:52:08 +0000 (+0200) Subject: [System] Add missing configuration properties to the list of properties (#4954) X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=cbd180afe66dbe3da18a22c5260e171a82dc207e;p=mono.git [System] Add missing configuration properties to the list of properties (#4954) After looking at https://github.com/mono/mono/pull/4949 I did a quick pass through the other config sections and found two more cases where we missed adding to the properties list. --- diff --git a/mcs/class/System/System.Net.Configuration/DefaultProxySection.cs b/mcs/class/System/System.Net.Configuration/DefaultProxySection.cs index b3365b81835..2019ff147ad 100644 --- a/mcs/class/System/System.Net.Configuration/DefaultProxySection.cs +++ b/mcs/class/System/System.Net.Configuration/DefaultProxySection.cs @@ -61,6 +61,7 @@ namespace System.Net.Configuration properties = new ConfigurationPropertyCollection (); properties.Add (bypassListProp); + properties.Add (enabledProp); properties.Add (moduleProp); properties.Add (proxyProp); properties.Add (useDefaultCredentialsProp); diff --git a/mcs/class/System/System.Net.Configuration/ProxyElement.cs b/mcs/class/System/System.Net.Configuration/ProxyElement.cs index bce70c4277c..bbe366aa292 100644 --- a/mcs/class/System/System.Net.Configuration/ProxyElement.cs +++ b/mcs/class/System/System.Net.Configuration/ProxyElement.cs @@ -62,6 +62,7 @@ namespace System.Net.Configuration properties = new ConfigurationPropertyCollection (); + properties.Add (autoDetectProp); properties.Add (bypassOnLocalProp); properties.Add (proxyAddressProp); properties.Add (scriptLocationProp);