11 references to DataProtectionScope
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.Security (5)
system\security\cryptography\dataprotection.cs (4)
40DataProtectionScope scope) { 63if (scope == DataProtectionScope.LocalMachine) 115DataProtectionScope scope) { 138if (scope == DataProtectionScope.LocalMachine)
system\security\cryptography\dpapidataprotector.cs (1)
18public DataProtectionScope Scope { get; set; }
System.ServiceModel (4)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (4)
71return ProtectedData.Unprotect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine); 84return ProtectedData.Protect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine);