Exemplo n.º 1
0
            public FileInfoRow AddFileInfoRow(string File_Name, string Stream_Name, long Stream_Size, string Location, System.DateTime Creation_Date)
            {
                FileInfoRow rowFileInfoRow = ((FileInfoRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    File_Name,
                    Stream_Name,
                    Stream_Size,
                    Location,
                    Creation_Date
                };
                rowFileInfoRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowFileInfoRow);
                return(rowFileInfoRow);
            }
 public FileInfoRowChangeEvent(FileInfoRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveFileInfoRow(FileInfoRow row) {
     this.Rows.Remove(row);
 }
 public void AddFileInfoRow(FileInfoRow row) {
     this.Rows.Add(row);
 }
Exemplo n.º 5
0
 public FileInfoRowChangeEvent(FileInfoRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 6
0
 public void RemoveFileInfoRow(FileInfoRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 7
0
 public void AddFileInfoRow(FileInfoRow row)
 {
     this.Rows.Add(row);
 }