Пример #1
0
 public MetaInfo(String id, IndexableMetaInfoType indexableType, string key, string description, IList <object> values)
 {
     this.id            = id;
     this.indexableType = indexableType;
     this.key           = key;
     this.description   = description;
     this.values        = values ?? new List <object>();
 }
Пример #2
0
 public MetaInfo(String id, IndexableMetaInfoType indexableType, string key, string description)
     : this(id, indexableType, key, description, new List <object>())
 {
 }
Пример #3
0
 public MetaInfo(IndexableMetaInfoType indexableType, string key, string description)
     : this(null, indexableType, key, description)
 {
 }
Пример #4
0
 public MetaInfo(IndexableMetaInfoType indexableType)
     : this(null, indexableType, string.Empty, null)
 {
 }
Пример #5
0
 protected MetaInfoValue(IndexableMetaInfoType indexable_type, string key, object value)
 {
     this.indexableType = indexable_type;
     this.key           = key;
     this.value         = value;
 }
Пример #6
0
 public MetaInfoValue(IndexableMetaInfoType indexableType)
     : this(indexableType, string.Empty, null)
 {
     this.indexableType = indexableType;
 }