14 references to Attributes
System (8)
sys\system\configuration\ApplicationSettingsBase.cs (2)
463sp.Attributes.Add(attr.GetType(), attr); 577_init.Attributes.Add(attr.GetType(), attr);
sys\system\configuration\LocalFileSettingsProvider.cs (5)
106SpecialSettingAttribute attr = setting.Attributes[typeof(SpecialSettingAttribute)] as SpecialSettingAttribute; 429SettingsManageabilityAttribute manageAttr = setting.Attributes[typeof(SettingsManageabilityAttribute)] as SettingsManageabilityAttribute; 442bool isUser = setting.Attributes[typeof(UserScopedSettingAttribute)] is UserScopedSettingAttribute; 443bool isApp = setting.Attributes[typeof(ApplicationScopedSettingAttribute)] is ApplicationScopedSettingAttribute; 515if (!(sp.Attributes[typeof(NoSettingsVersionUpgradeAttribute)] is NoSettingsVersionUpgradeAttribute)) {
sys\system\configuration\SettingsProperty.cs (1)
70_Attributes = new SettingsAttributeDictionary(propertyToCopy.Attributes);
System.Web (3)
Profile\HttpProfileBase.cs (1)
72bool fAllowAnonymous = (bool)p.Attributes["AllowAnonymous"];
Profile\ProfileModule.cs (2)
207bool allowAnonymous = (bool)pp.Property.Attributes["AllowAnonymous"]; 221bool allowAnonymous = (bool)pp.Property.Attributes["AllowAnonymous"];
System.Web.Extensions (3)
ApplicationServices\ApplicationServiceHelper.cs (1)
202metadata.AllowAnonymousAccess = (bool)property.Attributes["AllowAnonymous"];
ApplicationServices\ProfileService.cs (1)
201if (settingProperty.IsReadOnly || (pb.IsAnonymous && !(bool)settingProperty.Attributes["AllowAnonymous"])) {
Profile\ProfileService.cs (1)
99(!profile.IsAnonymous || (bool)settingProperty.Attributes["AllowAnonymous"])) {