Show / Hide Table of Contents

Class DiffSection

Details about a section of changes within a difference chunk.

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

Properties

Lines

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

The lines within changed section.

Type

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

Type of change.

In this article
Back to top