25 references to CookieProtection
System.Web (25)
Configuration\AnonymousIdentificationSection.cs (5)
80
new ConfigurationProperty("cookieProtection", typeof(
CookieProtection
),
CookieProtection
.Validation, ConfigurationPropertyOptions.None);
173
[ConfigurationProperty("cookieProtection", DefaultValue =
CookieProtection
.Validation)]
174
public
CookieProtection
CookieProtection {
176
return (
CookieProtection
)base[_propCookieProtection];
Configuration\RoleManagerSection.cs (5)
137
typeof(
CookieProtection
),
138
CookieProtection
.All,
289
[ConfigurationProperty("cookieProtection", DefaultValue =
CookieProtection
.All)]
290
public
CookieProtection
CookieProtection {
292
return (
CookieProtection
)base[_propCookieProtection];
Security\AnonymousIdentificationModule.cs (2)
303
private static
CookieProtection
s_Protection =
CookieProtection
.None;
Security\CookieProtection.cs (11)
22
internal static string Encode (
CookieProtection
cookieProtection, byte [] buf, Purpose purpose)
33
if (cookieProtection ==
CookieProtection
.All || cookieProtection ==
CookieProtection
.Validation)
53
if (cookieProtection ==
CookieProtection
.All || cookieProtection ==
CookieProtection
.Encryption)
69
internal static byte[] Decode (
CookieProtection
cookieProtection, string data, Purpose purpose)
80
if (buf == null || cookieProtection ==
CookieProtection
.None)
82
if (cookieProtection ==
CookieProtection
.All || cookieProtection ==
CookieProtection
.Encryption)
89
if (cookieProtection ==
CookieProtection
.All || cookieProtection ==
CookieProtection
.Validation)
Security\Roles.cs (2)
56
static public
CookieProtection
CookieProtectionValue { get { Initialize(); return s_CookieProtection; }}
583
static private
CookieProtection
s_CookieProtection;