ErrorRank Enumeration

Visual Studio 2015
 

Value that indicates the rank of an in the error list (errors with a lower rank are, by default, displayed before errors with a higher rank).

Namespace:   Microsoft.VisualStudio.Shell.TableManager
Assembly:  Microsoft.VisualStudio.Shell.Immutable.14.0 (in Microsoft.VisualStudio.Shell.Immutable.14.0.dll)

public enum class ErrorRank

Member nameDescription
Declaration

Declaration error rank.

Emit

Emit error rank.

Lexical

Lexical error rank.

Other

Other error rank.

PostBuild

PostBuild error rank.

Semantic

Semantic error rank.

Syntactic

Syntactic error rank.

Base type for the value returned when calling ITableEntry.TryGetValue(string, out object) and ITableEntriesSnapshot.TryGetValue(int, string, out object) using the StandardTableKeyNames.ErrorRank key. It is better, for performance reasons, to return values that have been boxed when returning though an out object. You can find boxed equivalents of these values in Microsoft.VisualStudio.Shell.TableManager.Boxes.

Return to top
Show: