System.Configuration.Internal.InternalConfigRoot.hlFindConfigRecord C# (CSharp) Метод

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

private hlFindConfigRecord ( string parts, int &nextIndex, BaseConfigurationRecord &currentRecord ) : void
parts string
nextIndex int
currentRecord System.Configuration.BaseConfigurationRecord
Результат void
        private void hlFindConfigRecord(string[] parts, out int nextIndex, out BaseConfigurationRecord currentRecord) {
            currentRecord = _rootConfigRecord;
            nextIndex = 0;
            for (; nextIndex < parts.Length; nextIndex++) {
                BaseConfigurationRecord childRecord = currentRecord.hlGetChild(parts[nextIndex]);
                if (childRecord == null)
                    break;

                currentRecord = childRecord;
            }
        }