QuoteUsage Enumeration

Enumerates the ways values may be quoted when writing delimited text files.

Definition

Namespace: Extreme.Data.Text
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public enum QuoteUsage

Members

AsNeeded0 Values are quoted only when necessary. This is the default.
AsNeededForColumnType1 All values in a column are quoted when some possible values of the type of the column require it.
Always2 Values are always quoted.
Never3 Values are never quoted. Note that this may cause the resulting file to be invalid.

See Also