view src/Core/RazorEngine.Core/Encoding.cs @ 1:82b5641bdba1

removed nuget
author cin
date Sun, 24 Aug 2014 17:57:06 +0400
parents 5bca2d201ad8
children
line wrap: on
line source

namespace RazorEngine
{
    /// <summary>
    /// Defines the possible values for encoding.
    /// </summary>
    public enum Encoding
    {
        /// <summary>
        /// Use html encoding.
        /// </summary>
        Html,

        /// <summary>
        /// Use raw text (no encoding)
        /// </summary>
        Raw
    }
}