Show / Hide Table of Contents

Class CompareLineResult

The result of a comparison of two lines in the two content input strings.

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

Properties

DiffType

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

LeftContent

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

A line from the content on the left. This may be empty if there is no matching line on the left for a line in the right content.

LeftIndices

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

A comma delimited set of indices that identify which characters are different from those in the right string.

RightContent

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

A line from the content on the right. This may be empty if there is no matching line on the right for a line in the left content.

RightIndices

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

A comma delimited set of indices that identify which characters are different from those in the left string.

In this article
Back to top