Show / Hide Table of Contents

Class DiffLineDetails

Details about a line within the difference.

Inheritance
object
DiffLineDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class DiffLineDetails

Properties

BaseLine

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

The number of a line in the base version.

ConflictMarker

Declaration
[JsonProperty(PropertyName = "conflictMarker")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DiffLineDetails.ConflictMarkerEnum? ConflictMarker { get; set; }
Property Value
Type Description
DiffLineDetails.ConflictMarkerEnum?

Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.

LineContent

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

The contents of a line.

TargetLine

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

The number of a line in the target version.

In this article
Back to top