Mercurial > pub > RazorEngine
annotate src/Core/RazorEngine.Core/Encoding.cs @ 0:5bca2d201ad8
initial commit
author | cin |
---|---|
date | Sun, 24 Aug 2014 11:14:55 +0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 namespace RazorEngine |
2 { | |
3 /// <summary> | |
4 /// Defines the possible values for encoding. | |
5 /// </summary> | |
6 public enum Encoding | |
7 { | |
8 /// <summary> | |
9 /// Use html encoding. | |
10 /// </summary> | |
11 Html, | |
12 | |
13 /// <summary> | |
14 /// Use raw text (no encoding) | |
15 /// </summary> | |
16 Raw | |
17 } | |
18 } |