1 write to useCurrentUserProtectionScope
System.ServiceModel (1)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (1)
27
this.
useCurrentUserProtectionScope
= useCurrentUserProtectionScope;
4 references to useCurrentUserProtectionScope
System.ServiceModel (4)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (4)
43
return this.
useCurrentUserProtectionScope
;
62
result.AppendFormat("{0} UseCurrentUserProtectionScope={1}", Environment.NewLine, this.
useCurrentUserProtectionScope
);
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);