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

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

private Init ( IConfigSystem system, string configPath, Configuration parent ) : void
system IConfigSystem
configPath string
parent Configuration
Результат void
		internal void Init (IConfigSystem system, string configPath, Configuration parent)
		{
			this.system = system;
			this.configPath = configPath;
			streamName = system.Host.GetStreamName (configPath);
			this.parent = parent;
			if (parent != null)
				rootGroup = parent.rootGroup;
			else {
				rootGroup = new SectionGroupInfo ();
				rootGroup.StreamName = streamName;
			}
			
			if (streamName != null)
				Load ();
		}