__VSPROFILECATEGORYSENSITIVITY Enumeration

 

Specifies a sensitivity level to GetSensitivityLevel calls.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)

public enum __VSPROFILECATEGORYSENSITIVITY

Member nameDescription
PCSEN_PRIVACY

The settings in this category could compromise a user's privacy.

PCSEN_SAFE

The settings in this category contain no sensitive information.

From vsshell80.idl:

enum __VSPROFILECATEGORYSENSITIVITY
{
    PCSEN_SAFE      = 0x00000000,
    PCSEN_PRIVACY   = 0x00000001,
};
typedef DWORD VSPROFILECATEGORYSENSITIVITY;
Return to top
Show: