13 lines
229 B
C#
13 lines
229 B
C#
|
|
namespace Umbraco.Web
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Used in the .Field method to render an Umbraco field to specify what encoding to use
|
||
|
|
/// </summary>
|
||
|
|
public enum RenderFieldEncodingType
|
||
|
|
{
|
||
|
|
Url,
|
||
|
|
Html,
|
||
|
|
Unchanged
|
||
|
|
}
|
||
|
|
}
|