Exemple #1
0
 protected ParameterizedNamedItem(string name, ParameterCollection parameters)
     : base(name)
 {
     description        = ItemDescription;
     this.parameters    = parameters;
     readOnlyParameters = null;
 }
Exemple #2
0
 protected ParameterizedNamedItem(string name)
     : base(name)
 {
     description        = ItemDescription;
     parameters         = new ParameterCollection();
     readOnlyParameters = null;
 }
Exemple #3
0
 protected ParameterizedNamedItem()
     : base()
 {
     name               = ItemName;
     description        = ItemDescription;
     parameters         = new ParameterCollection();
     readOnlyParameters = null;
 }
Exemple #4
0
 protected ReadOnlyKeyedItemCollection(ReadOnlyKeyedItemCollection <TKey, TItem> original, Cloner cloner)
 {
     cloner.RegisterClonedObject(original, this);
     collection = cloner.Clone((IKeyedItemCollection <TKey, TItem>)original.collection);
     RegisterEvents();
 }
Exemple #5
0
 protected ParameterizedNamedItem(string name, string description, ParameterCollection parameters)
     : base(name, description)
 {
     this.parameters    = parameters;
     readOnlyParameters = null;
 }
Exemple #6
0
 protected ParameterizedNamedItem(string name, string description)
     : base(name, description)
 {
     parameters         = new ParameterCollection();
     readOnlyParameters = null;
 }
Exemple #7
0
 protected ParameterizedNamedItem(ParameterizedNamedItem original, Cloner cloner)
     : base(original, cloner)
 {
     parameters         = cloner.Clone(original.parameters);
     readOnlyParameters = null;
 }