Show / Hide Table of Contents

Class ParserTestResult

ParserTestResult

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

Properties

AdditionalInfo

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

Additional information for the test result.

Entries

Declaration
[JsonProperty(PropertyName = "entries")]
public List<AbstractParserTestResultLogEntry> Entries { get; set; }
Property Value
Type Description
List<AbstractParserTestResultLogEntry>

The test result log entries.

ExampleContent

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

The example content.

Lines

Declaration
[JsonProperty(PropertyName = "lines")]
public List<AbstractParserTestResultLogLine> Lines { get; set; }
Property Value
Type Description
List<AbstractParserTestResultLogLine>

The test result log lines.

NamedCaptureGroups

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

The named capture groups.

In this article
Back to top