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); }