Mercurial > pub > RazorEngine
view src/Core/RazorEngine.Core/Encoding.cs @ 3:91d78452a4a0 default tip
sync
| author | cin |
|---|---|
| date | Thu, 12 Feb 2015 00:20:38 +0300 |
| 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 } }
