Show / Hide Table of Contents

Class HighlightCommandDescriptor

Command descriptor for querylanguage HIGHLIGHT command.

Inheritance
object
AbstractCommandDescriptor
HighlightCommandDescriptor
Inherited Members
AbstractCommandDescriptor.DisplayQueryString
AbstractCommandDescriptor.InternalQueryString
AbstractCommandDescriptor.Category
AbstractCommandDescriptor.ReferencedFields
AbstractCommandDescriptor.DeclaredFields
AbstractCommandDescriptor.IsHidden
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 HighlightCommandDescriptor : AbstractCommandDescriptor

Properties

Color

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

User specified color to highlight matches with if found.

Fields

Declaration
[JsonProperty(PropertyName = "fields")]
public List<string> Fields { get; set; }
Property Value
Type Description
List<string>

List of fields specified to highlight with the same color if matches found.

Keywords

Declaration
[JsonProperty(PropertyName = "keywords")]
public List<string> Keywords { get; set; }
Property Value
Type Description
List<string>

List of terms or phrases to highlight if found.

In this article
Back to top