System.Configuration.ConfigurationValues.SetValue C# (CSharp) 메소드

SetValue() 개인적인 메소드

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