11 references to DataProtectionScope
System.IdentityModel (2)
System\IdentityModel\ProtectedDataCookieTransform.cs (2)
58
decoded = ProtectedData.Unprotect( encoded, this.entropy,
DataProtectionScope
.CurrentUser );
91
encoded = ProtectedData.Protect( value, this.entropy,
DataProtectionScope
.CurrentUser );
System.Security (5)
system\security\cryptography\dataprotection.cs (4)
40
DataProtectionScope
scope) {
63
if (scope ==
DataProtectionScope
.LocalMachine)
115
DataProtectionScope
scope) {
138
if (scope ==
DataProtectionScope
.LocalMachine)
system\security\cryptography\dpapidataprotector.cs (1)
18
public
DataProtectionScope
Scope { get; set; }
System.ServiceModel (4)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (4)
71
return ProtectedData.Unprotect(data, this.entropy, (this.useCurrentUserProtectionScope) ?
DataProtectionScope
.CurrentUser :
DataProtectionScope
.LocalMachine);
84
return ProtectedData.Protect(data, this.entropy, (this.useCurrentUserProtectionScope) ?
DataProtectionScope
.CurrentUser :
DataProtectionScope
.LocalMachine);