Table Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()
- Source:
- Table.cs
Initializes a new instance of the Table class.
public Table ();
Public Sub New ()
Applies to
Table(String, IList<Column>, IList<IList<String>>)
- Source:
- Table.cs
Initializes a new instance of the Table class.
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)))
Parameters
- name
- String
The name of the table.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET