Esempio n. 1
0
 public DataSetChangingEventArgs(DataSet sds, DataSetChangeAction action, object target)
 {
     this.sds    = sds;
     this.target = target;
     this.cancel = false;
     this.action = action;
 }
Esempio n. 2
0
        public DataSetChangedEventArgs(DataSet sds, DataSetChangeAction action, object target, DataSetChangeset changes)
        {
            this.sds    = sds;
            this.action = action;
            this.target = target;

            this.changes = changes;
        }
Esempio n. 3
0
 public DataSetChangingEventArgs(DataSet sds, DataSetChangeAction action, object target)
 {
     this.sds = sds;
     this.target = target;
     this.cancel = false;
     this.action = action;
 }
Esempio n. 4
0
        public DataSetChangedEventArgs(DataSet sds, DataSetChangeAction action, object target, DataSetChangeset changes)
        {
            this.sds = sds;
            this.action = action;
            this.target = target;

            this.changes = changes;
        }