ErrorSource Enumeration

Visual Studio 2015
 

Value that indicates the source of an error in the error list.

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

[FlagsAttribute]
public enum class ErrorSource

Member nameDescription
Build

Used to indicate any error generated by an explicit build command.

Other

Used to indicate any error generated from any compilation process that was not explicitly invoked by the end-user (e.g. in response to typing a character).

Base type for the value returned when calling ITableEntry.TryGetValue(string, out object) and ITableEntriesSnapshot.TryGetValue(int, string, out object) using the StandardTableKeyNames.ErrorSource 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: