using System;
#region " © Copyright 2005-07 to Marcos Meli - http://www.marcosmeli.com.ar"
// Errors, suggestions, contributions, send a mail to: marcos@filehelpers.com.
#endregion
namespace FileHelpers
{
/// Indicates the behavior of quoted fields.
public enum QuoteMode
{
/// The engine always expects a quote when read and always adds the quotes when write.
AlwaysQuoted = 0,
/// The engine expects or not a quote when read and always adds the quotes when write.
OptionalForRead,
/// The engine always expects a quote when read and adds the quotes when write only if the field contains: quotes, new lines or the separator char.
OptionalForWrite,
/// The engine expects or not a quote when read and adds the quotes when write only if the field contains: quotes, new lines or the separator char.
OptionalForBoth
}
}