NewLineHandling Enum

Summary

Enumeration for what kind of newline normalization the supported tag helpers should apply.
Namespace
Localization.AspNetCore.TagHelpers
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["NewLineHandling"] class Type type-node

Syntax

public enum NewLineHandling

Fields

Name Constant Value Summary
Auto 1
Use the current Operating Systems preferred line ending.
static
None 0
Do not normalize line endings.
static
Unix 3
Convert all line endings to Unix preferred (LF)
static
Windows 2
Convert all line endings to Windows preferred (CRLF)
static