Files
Umbraco-CMS/umbraco/presentation.ClientDependency/IClientDependencyFile.cs
Shandem 198c2d2d06 WORK IN PROGRESS, DO NOT DOWNLOAD
ClientDependency work. Resolved old 20914 bug. Initial fix to remove Umbraco.aspx page popup.

[TFS Changeset #56361]
2009-07-13 14:51:26 +00:00

18 lines
479 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace umbraco.presentation.ClientDependency
{
public interface IClientDependencyFile
{
string FilePath { get; set; }
ClientDependencyType DependencyType { get; set; }
string InvokeJavascriptMethodOnLoad { get; set; }
int Priority { get; set; }
//string CompositeGroupName { get; set; }
string PathNameAlias { get; set; }
bool DoNotOptimize { get; set; }
}
}