Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Mainsoft.Configuration/Mainsoft.Web.Configuration/PagesSection.cs')
-rw-r--r--mcs/class/Mainsoft.Configuration/Mainsoft.Web.Configuration/PagesSection.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/mcs/class/Mainsoft.Configuration/Mainsoft.Web.Configuration/PagesSection.cs b/mcs/class/Mainsoft.Configuration/Mainsoft.Web.Configuration/PagesSection.cs
new file mode 100644
index 00000000000..6561ba2feca
--- /dev/null
+++ b/mcs/class/Mainsoft.Configuration/Mainsoft.Web.Configuration/PagesSection.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Configuration;
+
+namespace Mainsoft.Web.Configuration
+{
+ public class PagesSection : ConfigurationSection
+ {
+ [ConfigurationPropertyAttribute ("multiForm", DefaultValue = false)]
+ public bool MultiForm {
+ get {
+ return (bool) this ["multiForm"];
+ }
+ set {
+ this ["multiForm"] = value;
+ }
+ }
+ }
+}