StepResult.Table Constructors

Definition

Overloads

StepResult.Table()

Initializes a new instance of the StepResult.Table class without specifying a name, description, or columns for the table.

StepResult.Table(String)

Initializes a new instance of the StepResult.Table class with the specified description.

StepResult.Table(String, String, IEnumerable<StepResult.Column>)

Initializes a new instance of the StepResult.Table class with the specified name, description, and columns.

StepResult.Table(String, String, IEnumerable<String>)

Initializes a new instance of the StepResult.Table class with the specified name, description, and column names.

StepResult.Table()

Initializes a new instance of the StepResult.Table class without specifying a name, description, or columns for the table.

public Table ();
Public Sub New ()

Applies to

StepResult.Table(String)

Initializes a new instance of the StepResult.Table class with the specified description.

public Table (string description);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Table : string -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Table
Public Sub New (description As String)

Parameters

description
String

A string that specifies a description for the table.

Applies to

StepResult.Table(String, String, IEnumerable<StepResult.Column>)

Initializes a new instance of the StepResult.Table class with the specified name, description, and columns.

public Table (string name, string description, System.Collections.Generic.IEnumerable<Microsoft.Hpc.Diagnostics.Helpers.StepResult.Column> columns);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Table : string * string * seq<Microsoft.Hpc.Diagnostics.Helpers.StepResult.Column> -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Table
Public Sub New (name As String, description As String, columns As IEnumerable(Of StepResult.Column))

Parameters

name
String

A string that specifies the name of the table.

description
String

A string that specifies a description for the table.

columns
IEnumerable<StepResult.Column>

A collection of StepResult.Column objects that specifies the columns for the table.

Applies to

StepResult.Table(String, String, IEnumerable<String>)

Initializes a new instance of the StepResult.Table class with the specified name, description, and column names.

public Table (string name, string description, System.Collections.Generic.IEnumerable<string> columnNames);
new Microsoft.Hpc.Diagnostics.Helpers.StepResult.Table : string * string * seq<string> -> Microsoft.Hpc.Diagnostics.Helpers.StepResult.Table
Public Sub New (name As String, description As String, columnNames As IEnumerable(Of String))

Parameters

name
String

A string that specifies the name of the table.

description
String

A string that specifies a description for the table.

columnNames
IEnumerable<String>

A collection of String objects that specifies the column names for the table.

Applies to