Esempio n. 1
0
 public outputRowChangeEvent(outputRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 2
0
 public vodRow AddvodRow(string path, outputRow parentoutputRowByoutput_vod) {
     vodRow rowvodRow = ((vodRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             path,
             null};
     if ((parentoutputRowByoutput_vod != null)) {
         columnValuesArray[1] = parentoutputRowByoutput_vod[0];
     }
     rowvodRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowvodRow);
     return rowvodRow;
 }
Esempio n. 3
0
 public void RemoveoutputRow(outputRow row) {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public liveRow AddliveRow(string mgroup, string port, string allow_unicast, outputRow parentoutputRowByoutput_live) {
     liveRow rowliveRow = ((liveRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             mgroup,
             port,
             allow_unicast,
             null};
     if ((parentoutputRowByoutput_live != null)) {
         columnValuesArray[3] = parentoutputRowByoutput_live[0];
     }
     rowliveRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowliveRow);
     return rowliveRow;
 }
Esempio n. 5
0
 public void AddoutputRow(outputRow row) {
     this.Rows.Add(row);
 }