System.Configuration.SectionRecord.AddFileInput C# (CSharp) 메소드

AddFileInput() 개인적인 메소드

private AddFileInput ( SectionInput sectionInput ) : void
sectionInput SectionInput
리턴 void
        internal void AddFileInput(SectionInput sectionInput) {
            _fileInput = sectionInput;

            // If LockChildren is set, lock our children
            if (!sectionInput.HasErrors && sectionInput.SectionXmlInfo.LockChildren) {
                LockChildren = true;
            }
        }