4 references to CurrentUser
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.ServiceModel (2)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (2)
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);