SvnLineStyle Enum

Summary

Line style to use in Subversion files.
Namespace
Cake.Svn
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph TD Base0["Enum"]-->Type Base1["ValueType"]-->Base0 Base2["object"]-->Base1 Interface0["IComparable"]-.->Type Interface1["IFormattable"]-.->Type Interface2["IConvertible"]-.->Type Type["SvnLineStyle"] class Type type-node

Syntax

public enum SvnLineStyle

Fields

Name Constant Value Summary
CR 3
Use carriage return as line separator.
static
CRLF 1
Use carriage return and line feed as line separator.
static
Default 0
Default line style.
static
LF 2
Use line feed as line separator.
static
Unix 2
Default line style used in Unix environments. Similar to LF.
static
Windows 1
Default line style used in Windows environments. Similar to CRLF.
static
GitHub