StepResult.Row Constructors

Definition

Overloads

StepResult.Row()

Initializes a new instance of the StepResult.Row class without specifying any of the entries for the row.

StepResult.Row(IEnumerable<StepResult.RowItem>)

Initializes a new instance of the StepResult.Row class by using the specified collection of StepResult.RowItem objects to set the entries for the row.

StepResult.Row(IEnumerable<String>)

Initializes a new instance of the StepResult.Row class by using the specified collection of strings to set the entries for the row.

StepResult.Row()

Initializes a new instance of the StepResult.Row class without specifying any of the entries for the row.

public Row ();
Public Sub New ()

Applies to

StepResult.Row(IEnumerable<StepResult.RowItem>)

Initializes a new instance of the StepResult.Row class by using the specified collection of StepResult.RowItem objects to set the entries for the row.

public Row (System.Collections.Generic.IEnumerable<Microsoft.Hpc.Diagnostics.Helpers.StepResult.RowItem> items);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Row : seq<Microsoft.Hpc.Diagnostics.Helpers.StepResult.RowItem> -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Row
Public Sub New (items As IEnumerable(Of StepResult.RowItem))

Parameters

items
IEnumerable<StepResult.RowItem>

A collection of StepResult.RowItem objects to use as the entries in the cells of the row.

Applies to

StepResult.Row(IEnumerable<String>)

Initializes a new instance of the StepResult.Row class by using the specified collection of strings to set the entries for the row.

public Row (System.Collections.Generic.IEnumerable<string> values);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Row : seq<string> -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Row
Public Sub New (values As IEnumerable(Of String))

Parameters

values
IEnumerable<String>

A collection of strings to use as the entries in the cells of the row.

Applies to