Show / Hide Table of Contents

Class RegexMatchResult

RegexMatchResult

Inheritance
object
RegexMatchResult
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 RegexMatchResult

Properties

MatchedLogEntryEndIndex

Declaration
[JsonProperty(PropertyName = "matchedLogEntryEndIndex")]
public int? MatchedLogEntryEndIndex { get; set; }
Property Value
Type Description
int?

The matched log entry end index.

RegexScore

Declaration
[JsonProperty(PropertyName = "regexScore")]
public int? RegexScore { get; set; }
Property Value
Type Description
int?

The regular expression score.

RegexStepsInfo

Declaration
[JsonProperty(PropertyName = "regexStepsInfo")]
public List<StepInfo> RegexStepsInfo { get; set; }
Property Value
Type Description
List<StepInfo>

The regular expression steps information.

StepCount

Declaration
[JsonProperty(PropertyName = "stepCount")]
public int? StepCount { get; set; }
Property Value
Type Description
int?

The regular expression step count.

SubRegexesMatchInfo

Declaration
[JsonProperty(PropertyName = "subRegexesMatchInfo")]
public Dictionary<string, MatchInfo> SubRegexesMatchInfo { get; set; }
Property Value
Type Description
Dictionary<string, MatchInfo>

The regular expression match information.

In this article
Back to top