コード例 #1
0
 public SchemaCategory()
 {
     _schemas = new SchemaCollection();
 }
コード例 #2
0
 public SchemaCategory(string name, string title, string description, bool visible) : base(name, title, description, visible)
 {
     _schemas = new SchemaCollection();
 }
コード例 #3
0
 public SchemaCategory(string name) : base(name, name, string.Empty)
 {
     _schemas = new SchemaCollection();
 }