Files
Umbraco-CMS/umbraco/presentation.ClientDependency/Providers/ClientDependencySection.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

26 lines
665 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
namespace umbraco.presentation.ClientDependency.Providers
{
public class ClientDependencySection : ConfigurationSection
{
[ConfigurationProperty("providers")]
public ProviderSettingsCollection Providers
{
get { return (ProviderSettingsCollection)base["providers"]; }
}
[StringValidator(MinLength = 1)]
[ConfigurationProperty("defaultProvider", DefaultValue = "PageHeaderProvider")]
public string DefaultProvider
{
get { return (string)base["defaultProvider"]; }
set { base["defaultProvider"] = value; }
}
}
}