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