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