16 references to FormsProtectionEnum
System.Web (16)
Configuration\FormsAuthenticationConfiguration.cs (5)
132
typeof(
FormsProtectionEnum
),
133
FormsProtectionEnum
.All,
277
[ConfigurationProperty("protection", DefaultValue =
FormsProtectionEnum
.All)]
278
public
FormsProtectionEnum
Protection {
280
return (
FormsProtectionEnum
)base[_propProtection];
Security\FormsAuthentication.cs (11)
163
if (_Protection ==
FormsProtectionEnum
.All || _Protection ==
FormsProtectionEnum
.Encryption)
174
if (_Protection ==
FormsProtectionEnum
.All || _Protection ==
FormsProtectionEnum
.Validation)
266
if (_Protection ==
FormsProtectionEnum
.All || _Protection ==
FormsProtectionEnum
.Validation) {
276
if (_Protection ==
FormsProtectionEnum
.All || _Protection ==
FormsProtectionEnum
.Encryption) {
787
private static
FormsProtectionEnum
_Protection;
832
bool willEncrypt = (_Protection ==
FormsProtectionEnum
.All || _Protection ==
FormsProtectionEnum
.Encryption);