public void AddResponseDocumentRow(ResponseDocumentRow row) {
     this.Rows.Add(row);
 }
 public ResponseDocumentRowChangeEvent(ResponseDocumentRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public TestItemRow AddTestItemRow(ResponseDocumentRow parentResponseDocumentRowByResponseDocument_TestItem) {
     TestItemRow rowTestItemRow = ((TestItemRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null};
     if ((parentResponseDocumentRowByResponseDocument_TestItem != null)) {
         columnValuesArray[1] = parentResponseDocumentRowByResponseDocument_TestItem[11];
     }
     rowTestItemRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowTestItemRow);
     return rowTestItemRow;
 }
 public CookiesRow AddCookiesRow(string Domain, string Name, string Path, string Value, ResponseDocumentRow parentResponseDocumentRowByResponseDocument_Cookies) {
     CookiesRow rowCookiesRow = ((CookiesRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             Domain,
             Name,
             Path,
             Value,
             null};
     if ((parentResponseDocumentRowByResponseDocument_Cookies != null)) {
         columnValuesArray[4] = parentResponseDocumentRowByResponseDocument_Cookies[11];
     }
     rowCookiesRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowCookiesRow);
     return rowCookiesRow;
 }
 public ResponseHeaderRow AddResponseHeaderRow(ResponseDocumentRow parentResponseDocumentRowByResponseDocument_ResponseHeader) {
     ResponseHeaderRow rowResponseHeaderRow = ((ResponseHeaderRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null};
     if ((parentResponseDocumentRowByResponseDocument_ResponseHeader != null)) {
         columnValuesArray[1] = parentResponseDocumentRowByResponseDocument_ResponseHeader[11];
     }
     rowResponseHeaderRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowResponseHeaderRow);
     return rowResponseHeaderRow;
 }
 public void RemoveResponseDocumentRow(ResponseDocumentRow row) {
     this.Rows.Remove(row);
 }