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

AssociateContext() private method

private AssociateContext ( BaseConfigurationRecord configRecord ) : void
configRecord BaseConfigurationRecord
return void
        internal void AssociateContext(BaseConfigurationRecord configRecord) {
            _configRecord = configRecord;

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