Show / Hide Table of Contents

Class TableColumn

Result column that contains a table within each row.

Inheritance
object
AbstractColumn
TableColumn
Inherited Members
AbstractColumn.DisplayName
AbstractColumn.SubSystem
AbstractColumn.Values
AbstractColumn.IsListOfValues
AbstractColumn.IsMultiValued
AbstractColumn.IsCaseSensitive
AbstractColumn.IsGroupable
AbstractColumn.IsEvaluable
AbstractColumn.IsHidden
AbstractColumn.ValueType
AbstractColumn.OriginalDisplayName
AbstractColumn.InternalName
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class TableColumn : AbstractColumn

Properties

ArePartialResults

Declaration
[JsonProperty(PropertyName = "arePartialResults")]
public bool? ArePartialResults { get; set; }
Property Value
Type Description
bool?

True if query did not complete processing all data.

Columns

Declaration
[JsonProperty(PropertyName = "columns")]
public List<AbstractColumn> Columns { get; set; }
Property Value
Type Description
List<AbstractColumn>

Column descriptors for the table result.

Result

Declaration
[JsonProperty(PropertyName = "result")]
public List<Dictionary<string, object>> Result { get; set; }
Property Value
Type Description
List<Dictionary<string, object>>

Results data of the table.

In this article
Back to top