System.Configuration.ConfigurationValues.AssociateContext C# (CSharp) Метод

AssociateContext() приватный Метод

private AssociateContext ( BaseConfigurationRecord configRecord ) : void
configRecord BaseConfigurationRecord
Результат void
        internal void AssociateContext(BaseConfigurationRecord configRecord) {
            _configRecord = configRecord;

            // Associate with children
            foreach (ConfigurationElement currentElement in ConfigurationElements) {
                currentElement.AssociateContext(_configRecord);
            }
        }