StepResult.Table.AddRow Method

Definition

Overloads

AddRow(IEnumerable<StepResult.RowItem>)

Adds a new row to a table in the report for a diagnostic test run, by using the specified items for the entries in the row.

AddRow(IEnumerable<String>)

Adds a new row to a table in the report for a diagnostic test run, by using the specified values for the entries in the row.

AddRow(IEnumerable<StepResult.RowItem>)

Adds a new row to a table in the report for a diagnostic test run, by using the specified items for the entries in the row.

public void AddRow (System.Collections.Generic.IEnumerable<Microsoft.Hpc.Diagnostics.Helpers.StepResult.RowItem> items);
member this.AddRow : seq<Microsoft.Hpc.Diagnostics.Helpers.StepResult.RowItem> -> unit
Public Sub AddRow (items As IEnumerable(Of StepResult.RowItem))

Parameters

items
IEnumerable<StepResult.RowItem>

A collection of StepResult.RowItem objects that specifies the entries for the row.

Applies to

AddRow(IEnumerable<String>)

Adds a new row to a table in the report for a diagnostic test run, by using the specified values for the entries in the row.

public void AddRow (System.Collections.Generic.IEnumerable<string> values);
member this.AddRow : seq<string> -> unit
Public Sub AddRow (values As IEnumerable(Of String))

Parameters

values
IEnumerable<String>

A collection of String objects that specifies the values to use as entries for the row.

Applies to