Files
Umbraco-CMS/umbraco/presentation.ClientDependency/ClientDependencyEmbedType.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

23 lines
560 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace umbraco.presentation.ClientDependency
{
public enum ClientDependencyEmbedType
{
/// <summary>
/// Renders script tags out in the header.
/// This is the most common type
/// </summary>
Header,
/// <summary>
/// Dynamically includes the scripts via client side code.
/// This is usesful for situations when direct access to the ScriptManager or Head may not be possible
/// (i.e. Canvas)
/// </summary>
ClientSideRegistration
}
}