Exemplo n.º 1
0
 public DataSetChangingEventArgs(DataSet sds, DataSetChangeAction action, object target)
 {
     this.sds    = sds;
     this.target = target;
     this.cancel = false;
     this.action = action;
 }
Exemplo 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;
        }
Exemplo n.º 3
0
 public DataSetChangingEventArgs(DataSet sds, DataSetChangeAction action, object target)
 {
     this.sds = sds;
     this.target = target;
     this.cancel = false;
     this.action = action;
 }
Exemplo 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;
        }