MonodroidStockPortfolio/MonoDroid.FileHelpers/Enums/MultilineMode.cs

23 lines
No EOL
722 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>Indicates the behavior of multiline fields.</summary>
public enum MultilineMode
{
/// <summary>The engine can handle multiline values for read or write.</summary>
AllowForBoth = 0,
/// <summary>The engine can handle multiline values only for read.</summary>
AllowForRead,
/// <summary>The engine can handle multiline values only for write.</summary>
AllowForWrite,
/// <summary>The engine don´t allow multiline values for this field.</summary>
NotAllow
}
}