Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Specifies the current user profile security level returned with calls to GetSecurityLevel.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Public Enumeration __VSPROFILECATEGORYSECURITY
public enum __VSPROFILECATEGORYSECURITY
public enum class __VSPROFILECATEGORYSECURITY
type __VSPROFILECATEGORYSECURITY
public enum __VSPROFILECATEGORYSECURITY
Members
| 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. |
Remarks
COM Signature
From vsshell80.idl:
enum __VSPROFILECATEGORYSECURITY
{
PCSEC_SAFE = 0x00000000,
PCSEC_THREAT_VS = 0x00000001,
PCSEC_THREAT_MACHINE = 0x00000002,
};
typedef DWORD VSPROFILECATEGORYSECURITY;