IVsEnumExternalErrors Interface

Definition

Represents a list of external errors.

public interface class IVsEnumExternalErrors
public interface class IVsEnumExternalErrors
__interface IVsEnumExternalErrors
[System.Runtime.InteropServices.Guid("20890A77-47C8-44DD-ABC7-3F0920C1B79A")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsEnumExternalErrors
[System.Runtime.InteropServices.Guid("20890A77-47C8-44DD-ABC7-3F0920C1B79A")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsEnumExternalErrors
[<System.Runtime.InteropServices.Guid("20890A77-47C8-44DD-ABC7-3F0920C1B79A")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsEnumExternalErrors = interface
[<System.Runtime.InteropServices.Guid("20890A77-47C8-44DD-ABC7-3F0920C1B79A")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IVsEnumExternalErrors = interface
Public Interface IVsEnumExternalErrors
Attributes

Remarks

An external error represents an error in a file.

Notes to Implementers

This interface is typically implemented by any entity that implements the IVsReportExternalErrors interface or any entity that needs to add external errors to that interface.

Notes to Callers

This interface is obtained by calling the GetErrors(IVsEnumExternalErrors) method in the IVsReportExternalErrors interface. An instance of this interface is passed to the AddNewErrors(IVsEnumExternalErrors) method in the IVsReportExternalErrors interface.

Methods

Clone(IVsEnumExternalErrors)

Returns a copy of the current enumeration as a separate object.

Next(UInt32, ExternalError[], UInt32)

Returns the next set of elements from the enumeration.

Reset()

Resets the enumeration to the first element.

Skip(UInt32)

Skips over the specified number of elements.

Applies to