Table of Contents

Class FlameCsvGlobalOptions

Namespace
FlameCsv
Assembly
FlameCsv.Core.dll

Contains global options for FlameCSV configurable through environment variables.

[EditorBrowsable(EditorBrowsableState.Never)]
public static class FlameCsvGlobalOptions
Inheritance
FlameCsvGlobalOptions

Properties

CachingDisabled

Indicates whether the application is short-lived (FLAMECSV_DISABLE_CACHING environment variable is set).

public static bool CachingDisabled { get; set; }

Property Value

bool

Exceptions

NotSupportedException

The property is modified after using the library or using the getter.

ReadAheadCount

Maximum number of CSV fields to read ahead. Defaults to 4096, minimum is 32. Use FLAMECSV_MAX_READAHEAD to override.

public static int ReadAheadCount { get; set; }

Property Value

int

Exceptions

NotSupportedException

The property is modified after using the library or using the getter.