Show / Hide Table of Contents

Class DiffChunk

Details about a group of changes.

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

Properties

BaseLine

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

Line number in base version where changes begin.

BaseSpan

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

Number of lines chunk spans in base version.

DiffSections

Declaration
[JsonProperty(PropertyName = "diffSections")]
public List<DiffSection> DiffSections { get; set; }
Property Value
Type Description
List<DiffSection>

List of difference section.

TargetLine

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

Line number in target version where changes begin.

TargetSpan

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

Number of lines chunk spans in target version.

In this article
Back to top