Condividi tramite


Table Constructors

Definition

Overloads

Table()

Initializes a new instance of the Table class.

Table(String, IList<Column>, IList<IList<String>>)

Initializes a new instance of the Table class.

Table()

Initializes a new instance of the Table class.

public Table ();
Public Sub New ()

Applies to

Table(String, IList<Column>, IList<IList<String>>)

Initializes a new instance of the Table class.

public Table (string name, System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Models.Column> columns, System.Collections.Generic.IList<System.Collections.Generic.IList<string>> rows);
new Microsoft.Azure.ApplicationInsights.Models.Table : string * System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Models.Column> * System.Collections.Generic.IList<System.Collections.Generic.IList<string>> -> Microsoft.Azure.ApplicationInsights.Models.Table
Public Sub New (name As String, columns As IList(Of Column), rows As IList(Of IList(Of String)))

Parameters

name
String

The name of the table.

columns
IList<Column>

The list of columns in this table.

rows
IList<IList<String>>

The resulting rows from this query.

Applies to