Go to the documentation of this file.00001 using System.Configuration;
00002
00003 namespace N2.Configuration
00004 {
00008 public class DefaultDirectoryElement : ConfigurationElement
00009 {
00011 [ConfigurationProperty("mode", DefaultValue = DefaultDirectoryMode.RecursiveNames)]
00012 public DefaultDirectoryMode Mode
00013 {
00014 get { return (DefaultDirectoryMode)base["mode"]; }
00015 set { base["mode"] = value; }
00016 }
00017
00019 [ConfigurationProperty("rootPath")]
00020 public string RootPath
00021 {
00022 get { return (string)base["rootPath"]; }
00023 set { base["rootPath"] = value; }
00024 }
00025 }
00026 }