Show / Hide Table of Contents

Class ResultColumn

Querylanguage result column.

Inheritance
object
ResultColumn
Inherited Members
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 ResultColumn

Properties

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

Display name - will be alias if result column is renamed by queryString.

InternalName

Declaration
[JsonProperty(PropertyName = "internalName")]
public string InternalName { get; set; }
Property Value
Type Description
string

Internal identifier for the column.

ValueType

Declaration
[JsonProperty(PropertyName = "valueType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ValueType? ValueType { get; set; }
Property Value
Type Description
ValueType?

Field denoting column data type.

In this article
Back to top