IVsReportExternalErrors Interface

Definition

Used to manage a list of error messages associated with a particular project.

public interface class IVsReportExternalErrors
public interface class IVsReportExternalErrors
__interface IVsReportExternalErrors
[System.Runtime.InteropServices.Guid("96F0CABD-DB51-428F-A42D-C756057D35C2")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsReportExternalErrors
[System.Runtime.InteropServices.Guid("96F0CABD-DB51-428F-A42D-C756057D35C2")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsReportExternalErrors
[<System.Runtime.InteropServices.Guid("96F0CABD-DB51-428F-A42D-C756057D35C2")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsReportExternalErrors = interface
[<System.Runtime.InteropServices.Guid("96F0CABD-DB51-428F-A42D-C756057D35C2")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IVsReportExternalErrors = interface
Public Interface IVsReportExternalErrors
Attributes

Remarks

This interface is used to manage a list of error messages for a particular project that implements the IntelliSense pop-up ToolTips.

Notes to Implementers

This interface is implemented by a project type to support collecting error messages for the project. This interface is implemented only on project types that implement the IVsIntellisenseProject interface.

Notes to Callers

This interface is obtained by calling the GetExternalErrorReporter(IVsReportExternalErrors) method in the IVsIntellisenseProject interface.

Methods

AddNewErrors(IVsEnumExternalErrors)

Replaces the current list of errors with the specified list.

ClearAllErrors()

Remove all errors from the list.

GetErrors(IVsEnumExternalErrors)

Retrieves a copy of the list of errors.

Applies to