websitepanel/WebsitePanel/Sources/WebsitePanel.WebDav.Core/Config/WebConfigSections/SessionKeysElementCollection.cs
2015-01-13 04:18:56 -08:00

19 lines
No EOL
600 B
C#

using System.Configuration;
using WebsitePanel.WebDavPortal.WebConfigSections;
namespace WebsitePanel.WebDav.Core.Config.WebConfigSections
{
[ConfigurationCollection(typeof (SessionKeysElement))]
public class SessionKeysElementCollection : ConfigurationElementCollection
{
protected override ConfigurationElement CreateNewElement()
{
return new SessionKeysElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((SessionKeysElement) element).Key;
}
}
}