Ejemplo n.º 1
0
 public SettingChangeEventArgs(SettingChangeAction action, string key, object value)
 {
     this.Action = action;
     this.Key    = key;
     this.Value  = value;
 }
Ejemplo n.º 2
0
 public SettingChange(SettingChangeAction action, string?key, object?value)
 {
     this.Action = action;
     this.Key    = key;
     this.Value  = value;
 }
Ejemplo n.º 3
0
		public SettingChangeEventArgs(SettingChangeAction action, string key, object value) {
			this.Action = action;
			this.Key = key;
			this.Value = value;
		}