System.Configuration.ConfigurationValues.SetValue C# (CSharp) Method

SetValue() private method

private SetValue ( string key, object value, ConfigurationValueFlags valueFlags, PropertySourceInfo sourceInfo ) : void
key string
value object
valueFlags ConfigurationValueFlags
sourceInfo PropertySourceInfo
return void
        internal void SetValue(string key, object value, ConfigurationValueFlags valueFlags, PropertySourceInfo sourceInfo) {
            ConfigurationValue configValue = CreateConfigValue(value, valueFlags, sourceInfo);
            BaseSet(key, configValue);
        }