public ConfigurationUnitBase(string configName, Type unitType, EnumConfigDomain domain, string fileName, bool autoInitFlag)
 {
     this.ConfigName = configName;
     this.UnitType = unitType;
     this.Domain = domain;
     this.FileName = fileName;
     this.AutoInitWhenNonExist = autoInitFlag;
 }
 public ConfigurationUnitBase(string configName, Type unitType, EnumConfigDomain domain, string fileName, bool autoInitFlag)
 {
     this.ConfigName           = configName;
     this.UnitType             = unitType;
     this.Domain               = domain;
     this.FileName             = fileName;
     this.AutoInitWhenNonExist = autoInitFlag;
 }
Exemplo n.º 3
0
 public ConfigurationSectionInfo(string configName, EnumConfigDomain domain, string fileName, bool autoInitFlag)
     : base(configName, typeof(T), domain, fileName, autoInitFlag)
 {
 }