Interface ICurrentCookieLevelProvider
Provides methods for obtaining and manipulation with the cookie level for the current request.
public interface ICurrentCookieLevelProvider
- Extension Methods
Methods
GetCurrentCookieLevel()
Gets the cookie level of the current request.
int GetCurrentCookieLevel()
Returns
- int
Returns the cookie level of the current request.
Remarks
When calling this method, CookieLevel response cookie is set.
Inbuilt cookie level values are represented by the constants in the CookieLevel class.
GetDefaultCookieLevel()
Gets the default cookie level based on settings.
int GetDefaultCookieLevel()
Returns
- int
Returns the default cookie level.
SetCurrentCookieLevel(int)
Sets the cookie level to the specified level.
void SetCurrentCookieLevel(int cookieLevel)
Parameters
cookieLevel
intCookie level to be set. Predefined constants in the CookieLevel class can be used.
Remarks
This action clears all the cookies that have a cookie level set lower that the new cookie level. New cookie level value is stored into the response cookie CookieLevel.