MonitorQueryModelFactory.LogsTableRow Method
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.
Creates an instance of LogsTableRow to support mocking.
public static Azure.Monitor.Query.Models.LogsTableRow LogsTableRow (System.Collections.Generic.IEnumerable<Azure.Monitor.Query.Models.LogsTableColumn> columns, System.Collections.Generic.IEnumerable<object> values);
static member LogsTableRow : seq<Azure.Monitor.Query.Models.LogsTableColumn> * seq<obj> -> Azure.Monitor.Query.Models.LogsTableRow
Public Shared Function LogsTableRow (columns As IEnumerable(Of LogsTableColumn), values As IEnumerable(Of Object)) As LogsTableRow
Parameters
- columns
- IEnumerable<LogsTableColumn>
The list of columns.
- values
- IEnumerable<Object>
An object array representing the rows of the table.
Returns
A new LogsTableRow instance for mocking.