Dela via


Table Constructors

Definition

Overloads

Table()

Initializes a new instance of the Table class.

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

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(IList<Column>, IList<IList<Object>>)

Initializes a new instance of the Table class.

public Table (System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.Column> columns, System.Collections.Generic.IList<System.Collections.Generic.IList<object>> rows);
new Microsoft.Azure.Management.ResourceGraph.Models.Table : System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceGraph.Models.Column> * System.Collections.Generic.IList<System.Collections.Generic.IList<obj>> -> Microsoft.Azure.Management.ResourceGraph.Models.Table
Public Sub New (columns As IList(Of Column), rows As IList(Of IList(Of Object)))

Parameters

columns
IList<Column>

Query result column descriptors.

rows
IList<IList<Object>>

Query result rows.

Applies to