示例#1
0
 internal ParameterRepresentation(string name, Type type, bool optional, string description, bool list) : base(RepresentationType.PluginParameter)
 {
     this.Name        = name;
     this.Optional    = optional;
     this.List        = list;
     this.ParamType   = RepresentationType.Extended(type);
     this.Description = description;
 }
示例#2
0
 public ExtensionPointRepresentation(string name, Type extended, string description) : base(RepresentationType.PluginDescription)
 {
     this._name        = name;
     this._description = description;
     this._extended    = RepresentationType.Extended(extended);
 }