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 trust levels for the editor.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Public Enumeration __VSEDITORTRUSTLEVEL
public enum __VSEDITORTRUSTLEVEL
public enum class __VSEDITORTRUSTLEVEL
type __VSEDITORTRUSTLEVEL
public enum __VSEDITORTRUSTLEVEL
Members
| Member name | Description | |
|---|---|---|
| ETL_AlwaysTrusted | Editor is always trusted. | |
| ETL_HasUntrustedLogicalViews | Some logical views are not trusted. | |
| ETL_NeverTrusted | Editor is never trusted. |
Remarks
COM Signature
From vsshell80.idl:
enum __VSEDITORTRUSTLEVEL
{
ETL_NeverTrusted = 0,
ETL_AlwaysTrusted = 1,
ETL_HasUntrustedLogicalViews = 2,
};
typedef DWORD VSEDITORTRUSTLEVEL;