__VSPROFILECATEGORYSECURITY Enumeration
Visual Studio 2015
Specifies the current user profile security level returned with calls to GetSecurityLevel.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| PCSEC_SAFE | The settings in this category are safe. | |
| PCSEC_THREAT_MACHINE | The settings in this category could threaten the machine, or user data. | |
| PCSEC_THREAT_VS | The settings in this category could threaten the Visual Studio user experience. |
From vsshell80.idl:
enum __VSPROFILECATEGORYSECURITY { PCSEC_SAFE = 0x00000000, PCSEC_THREAT_VS = 0x00000001, PCSEC_THREAT_MACHINE = 0x00000002, }; typedef DWORD VSPROFILECATEGORYSECURITY;
Show: