4 references to CurrentUser
System.IdentityModel (2)
System\IdentityModel\ProtectedDataCookieTransform.cs (2)
58decoded = ProtectedData.Unprotect( encoded, this.entropy, DataProtectionScope.CurrentUser ); 91encoded = ProtectedData.Protect( value, this.entropy, DataProtectionScope.CurrentUser );
System.ServiceModel (2)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (2)
71return ProtectedData.Unprotect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine); 84return ProtectedData.Protect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine);