Ejemplo n.º 1
0
 public void Update(ConfigurationElement element)
 {
     this.Name            = element.Name;
     this.Description     = element.Description;
     this.Path            = element.Path;
     this.IsHidden        = element.IsHidden;
     this.ValidationRules = element.ValidationRules;
     this.Flags           = element.Flags;
     this.OnUpdate(element);
 }
Ejemplo n.º 2
0
 public ConfigurationElement WithFlags(ConfigurationElementFlags flags)
 {
     this.Flags = flags;
     return(this);
 }