Added FileSystemProviderManager class for fetching a file system provider by alias (this should probably be moved into the Umbraco context in 4.10)
20 lines
558 B
C#
20 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Umbraco.Core.Configuration
|
|
{
|
|
public class FileSystemProvidersSection : ConfigurationSection
|
|
{
|
|
private const string PROVIDERS_KEY = "providers";
|
|
|
|
[ConfigurationProperty("", IsDefaultCollection = true, IsRequired = true)]
|
|
public FileSystemProviderElementCollection Providers
|
|
{
|
|
get { return ((FileSystemProviderElementCollection)(base[""])); }
|
|
}
|
|
}
|
|
}
|