Go to the documentation of this file.00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Text;
00005 using System.Configuration;
00006
00007 namespace N2.Configuration
00008 {
00012 public class MembershipElement : ConfigurationElement
00013 {
00015 [ConfigurationProperty("userType", DefaultValue = "N2.Security.Items.User, N2.Management")]
00016 public string UserType
00017 {
00018 get { return (string)base["userType"]; }
00019 set { base["userType"] = value; }
00020 }
00021 }
00022 }