14 lines
270 B
C#
14 lines
270 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
|
|
}
|
|
}
|