54 references to Name
System.Configuration (7)
System\Configuration\BaseConfigurationRecord.cs (1)
4272throw new ConfigurationErrorsException(SR.GetString(SR.Decryption_failed, protectionProvider.Name, e.Message), e, filename, lineNumber);
System\Configuration\MgmtConfigurationRecord.cs (2)
1819updatedXml = ProtectedConfigurationSection.FormatEncryptedSection(encryptedSection, configSection.SectionInformation.Name, configSection.SectionInformation.ProtectionProvider.Name); 1823SR.GetString(SR.Encryption_failed, configSection.SectionInformation.SectionName, configSection.SectionInformation.ProtectionProvider.Name, e.Message),
System\Configuration\ProviderBase.cs (1)
17public virtual string Description { get { return string.IsNullOrEmpty(_Description) ? Name : _Description; } }
System\Configuration\ProviderCollection.cs (3)
38if (provider.Name == null || provider.Name.Length < 1) 41_Hashtable.Add(provider.Name, provider);
System.Web (46)
Cache\OutputCache.cs (8)
401return (s_defaultProvider != null) ? s_defaultProvider.Name : OutputCache.ASPNET_INTERNAL_PROVIDER_NAME; 525if (HasDependencyChanged(false /*isFragment*/, oce.DependenciesKey, oce.Dependencies, oce.KernelCacheUrl, key, provider.Name)) { 526OutputCache.RemoveFromProvider(key, provider.Name); 561if (HasDependencyChanged(true /*isFragment*/, fragment._dependenciesKey, fragment._dependencies, null /*kernelKey*/, key, provider.Name)) { 562OutputCache.RemoveFragment(key, provider.Name); 741Object d = HttpRuntime.Cache.InternalCache.Add(depKey, new DependencyCacheEntry(fragmentKey, null, provider.Name), 787throw new ProviderException(SR.GetString(SR.Provider_does_not_support_policy_for_responses, provider.Name)); 862Object d = HttpRuntime.Cache.InternalCache.Add(depKey, new DependencyCacheEntry(rawResponseKey, oce.KernelCacheUrl, provider.Name),
Configuration\RemoteWebConfigurationHost.cs (2)
338ps = protectedConfigSection.Providers[protectionProvider.Name]; 364returnString = remoteSrv.DoEncryptOrDecrypt(doEncrypt, xmlString, protectionProvider.Name, typeName, paramKeys, paramValues);
Management\WebEvents.cs (3)
104Name, 2536Debug.Trace("WebEventManager", "Flushing provider " + provider.Name); 2552Debug.Trace("WebEventManager", "Shutting down provider " + provider.Name);
Security\ADMembershipProvider.cs (1)
2808return new ActiveDirectoryMembershipUser(Name, username, sidBinaryForm, providerUserKey, email, passwordQuestion, comment, isApproved, isLockedOut, whenCreated, lastLogon, lastActivity, lastPasswordChange, lastLockoutDate, true /* valuesAreUpdated */);
Security\RolePrincipal.cs (2)
47_ProviderName = Roles.Provider.Name; 167_ProviderName = Roles.Provider.Name;
Security\Roles.cs (11)
108if (user != null && user is RolePrincipal && ((RolePrincipal)user).ProviderName == Provider.Name && StringUtil.EqualsIgnoreCase(username, user.Identity.Name)) 145if (user != null && user is RolePrincipal && ((RolePrincipal)user).ProviderName == Provider.Name && StringUtil.EqualsIgnoreCase(username, user.Identity.Name)) { 198if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached && user.IsInRole(roleName)) 228if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached && StringUtil.EqualsIgnoreCase(user.Identity.Name, username)) 251if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached && StringUtil.EqualsIgnoreCase(user.Identity.Name, username)) 274if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached) 307if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached) 327if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached && StringUtil.EqualsIgnoreCase(user.Identity.Name, username)) 350if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached && StringUtil.EqualsIgnoreCase(user.Identity.Name, username)) 373if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached) 406if (user != null && user.ProviderName == Provider.Name && user.IsRoleListCached)
Security\SQLMembershipProvider.cs (6)
402return new MembershipUser( this.Name, 966return new MembershipUser( this.Name, 1055return new MembershipUser( this.Name, 1268users.Add( new MembershipUser( this.Name, 1407users.Add( new MembershipUser( this.Name, 1503users.Add( new MembershipUser( this.Name,
SiteMap.cs (3)
76String name = ((ProviderBase)rootProvider).Name; 153if (this[provider.Name] != null) 154throw new ArgumentException(SR.GetString(SR.SiteMapProvider_Multiple_Providers_With_Identical_Name, provider.Name));
SiteMapNode.cs (1)
302String name = ((ProviderBase)_provider.RootProvider).Name;
SiteMapProvider.cs (1)
322ProviderUtil.GetAndRemoveBooleanAttribute(attributes, _securityTrimmingEnabledAttrName, Name, ref _securityTrimmingEnabled);
UI\WebParts\SqlPersonalizationProvider.cs (1)
294throw new ProviderException(SR.GetString(SR.PersonalizationProvider_CantAccess, Name));
XmlSiteMapProvider.cs (7)
420throw new ProviderException(SR.GetString(SR.XmlSiteMapProvider_invalid_sitemapnode_returned, childProvider.Name)); 441throw new ProviderException(SR.GetString(SR.XmlSiteMapProvider_invalid_sitemapnode_returned, childProvider.Name)); 629SR.GetString(SR.XmlSiteMapProvider_invalid_GetRootNodeCore, ((ProviderBase)provider).Name)); 897this.Name, ownerProvider.Name)); 926throw new InvalidOperationException(SR.GetString(SR.XmlSiteMapProvider_cannot_find_provider, provider.Name, this.Name));
System.Web.Extensions (1)
ApplicationServices\RoleService.cs (1)
53string providerName = Roles.Provider.Name;