Пример #1
0
 public AfterStoreChangedEventArgs(string action, bool success, Exception exception, List <object> responseRecords)
 {
     this.action          = Store.Action(action);
     this.exception       = exception;
     this.success         = success;
     this.responseRecords = responseRecords;
 }
 public BeforeStoreChangedEventArgs(string action, string jsonData)
 {
     this.jsonData = jsonData;
     this.action   = Store.Action(action);
     this.cancel   = false;
 }
Пример #3
0
 internal BeforeDirectEventArgs(string action, string data, JToken parameters)
 {
     this.action     = Store.Action(action);
     this.data       = data;
     this.parameters = parameters;
 }