__VSEDITORTRUSTLEVEL Enumeration
Visual Studio 2015
Specifies trust levels for the editor.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Member name | Description | |
|---|---|---|
| ETL_AlwaysTrusted | Editor is always trusted. | |
| ETL_HasUntrustedLogicalViews | Some logical views are not trusted. | |
| ETL_NeverTrusted | Editor is never trusted. |
From vsshell80.idl:
enum __VSEDITORTRUSTLEVEL { ETL_NeverTrusted = 0, ETL_AlwaysTrusted = 1, ETL_HasUntrustedLogicalViews = 2, }; typedef DWORD VSEDITORTRUSTLEVEL;
Show: