public PropertyChangedEventArgs(SkyMap.Net.Core.Properties properties, string key, object oldValue, object newValue)
 {
     this.properties = properties;
     this.key = key;
     this.oldValue = oldValue;
     this.newValue = newValue;
 }
Example #2
0
 public Codon(SkyMap.Net.Core.AddIn addIn, string name, SkyMap.Net.Core.Properties properties, ICondition[] conditions)
 {
     this.addIn = addIn;
     this.name = name;
     this.properties = properties;
     this.conditions = conditions;
 }
Example #3
0
 public Condition(string name, SkyMap.Net.Core.Properties properties)
 {
     this.name = name;
     this.properties = properties;
     this.action = properties.Get<ConditionFailedAction>("action", ConditionFailedAction.Exclude);
 }