Example #1
0
 public TConfigGroup(TConfigGroup group)
     : this()
 {
     Name     = group.Name;
     Groups   = new TConfigGroupCollection(group.Groups);
     Channels = new TLocalChannelCollection(group.Channels);
 }
Example #2
0
 public TConfigGroup(XElement group)
     : this()
 {
     Name     = group.SafeReadAttribute <string>("name", "");
     Channels = new TLocalChannelCollection(group.SafeReadElement("channels"));
     Groups   = new TConfigGroupCollection(group.SafeReadElement("groups"));
 }
Example #3
0
 public TConfigGroup()
 {
     Name     = "";
     Groups   = new TConfigGroupCollection();
     Channels = new TLocalChannelCollection();
 }