Roles.MaxCachedResults Property
.NET Framework (current version)
Gets the maximum number of role names to be cached for a user.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Int32The maximum number of role names to be cached for a user. The default is 25.
The MaxCachedResults property is set using the maxCachedResults configuration attribute. The value of the maxCachedResults configuration attribute must be set to an integer value greater than zero.
The following example shows the element in the system.web section of the Web.config file for an ASP.NET application. It specifies that the application uses a SqlRoleProvider instance and sets the maxCachedResults attribute to 10.
<roleManager enabled="true" cacheRolesInCookie="true" cookieName=".ASPROLES" cookieTimeout="30" cookiePath="/" cookieRequireSSL="false" cookieSlidingExpiration="true" cookieProtection="All" maxCachedResults="10" />
.NET Framework
Available since 2.0
Available since 2.0
Show: