Init() 개인적인 메소드

private Init ( IInternalConfigRoot configRoot, IInternalConfigRecord parent, string configPath, string locationSubPath ) : void
configRoot IInternalConfigRoot
parent IInternalConfigRecord
configPath string
locationSubPath string
리턴 void
        private HybridDictionary _streamInfoUpdates; // List of StreamInfo, including the main config file, the configSource this record uses, and
                                                    // new configSource stream added thru API


        static internal MgmtConfigurationRecord Create(
                IInternalConfigRoot         configRoot,
                IInternalConfigRecord       parent,
                string                      configPath,
                string                      locationSubPath) {

            MgmtConfigurationRecord configRecord = new MgmtConfigurationRecord();
            configRecord.Init(configRoot, parent, configPath, locationSubPath);
            return configRecord;
        }