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

PagesSection.cs « Mainsoft.Web.Configuration « Mainsoft.Configuration « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6561ba2feca938975f772e8a2c7ff8d96ac1e201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
			}
		}
	}
}