Show / Hide Table of Contents

Class FileLineDetails

Object containing the details of a line in a file.

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

Properties

LineContent

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

The content of the line.

Remarks

Required

LineNumber

Declaration
[Required(ErrorMessage = "LineNumber is required.")]
[JsonProperty(PropertyName = "lineNumber")]
public int? LineNumber { get; set; }
Property Value
Type Description
int?

The line number.

Remarks

Required

In this article
Back to top