VSErrorCodes80 Enum

Definition

Visual Studio error codes.

public enum class VSErrorCodes80
public enum class VSErrorCodes80
enum VSErrorCodes80
public enum VSErrorCodes80
type VSErrorCodes80 = 
Public Enum VSErrorCodes80
Inheritance
VSErrorCodes80

Fields

VS_E_DOCUMENTOPENNOTTRUSTED -2147213335

Returned by editor invocation if the document cannot be opened safely (template, editor or logical view is untrusted).

VS_E_MIGRATIONREQUIRESRELOAD -2147213338

Migration requires a reload.

VS_E_SYNCHRONOUSOPENREQUIRED -2147213337

A solution or project file cannot be opened asynchronously.

VS_E_VSSETTINGS_INVALIDVERSION -2147213336

Returned by AddBrowseFile(String, IVsProfileSettingsFileInfo) if the selected file is of the wrong version.

Remarks

COM Signature

From vsshell80.idl:

enum VSErrorCodes80  
{  
    VS_E_MIGRATIONREQUIRESRELOAD = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x1FE6),  
    VS_E_SYNCHRONOUSOPENREQUIRED = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x1FE7),  
    VS_E_VSSETTINGS_INVALIDVERSION = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x1FE8),  
    VS_E_DOCUMENTOPENNOTTRUSTED = MAKE_HRESULT(SEVERITY_ERROR, FACILITY_ITF, 0x1FE9),  
};  

Applies to