Table コンストラクター

定義

オーバーロード

Table()

Table クラスの新しいインスタンスを初期化します。

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

Table クラスの新しいインスタンスを初期化します。

Table()

ソース:
Table.cs

Table クラスの新しいインスタンスを初期化します。

public Table ();
Public Sub New ()

適用対象

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

ソース:
Table.cs

Table クラスの新しいインスタンスを初期化します。

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

パラメーター

name
String

テーブルの名前。

columns
IList<Column>

このテーブル内の列の一覧。

rows
IList<IList<String>>

このクエリの結果の行。

適用対象