Show / Hide Table of Contents

Class RepositoryFileLines

Object containing the lines of a file in a repository.

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

Properties

Lines

Declaration
[Required(ErrorMessage = "Lines is required.")]
[JsonProperty(PropertyName = "lines")]
public List<FileLineDetails> Lines { get; set; }
Property Value
Type Description
List<FileLineDetails>

The list of lines in the file.

Remarks

Required

In this article
Back to top