DpapiDataProtector::Scope Property
Gets or sets the scope of the data protection.
Assembly: System.Security (in System.Security.dll)
public: property DataProtectionScope Scope { DataProtectionScope get(); void set(DataProtectionScope value); }
Property Value
Type: System.Security.Cryptography::DataProtectionScopeOne of the enumeration values that specifies the scope of the data protection (either the current user or the local machine). The default is CurrentUser.
Data protection encrypts the data on the disk so it cannot be read by other programs. You do not need a key to protect or unprotect the data. If you set the Scope to CurrentUser, only applications running on your credentials can unprotect the data; however, that means that any application running on your credentials can access the protected data. If you set the Scope to LocalMachine, any full-trust application on the computer can unprotect, access, and modify the data if it knows the application name, the primary purpose, and the specific purpose.
Available since 4.5