IVsEnumOutputs Interface

Inumerates a set of build output items from a project's configuration. Enumerates a set of build output items from a project's configuration.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

'Declaration
<GuidAttribute("0A8AC2FB-87BC-4795-8C8B-47E877F48FE8")> _
<InterfaceTypeAttribute()> _
Public Interface IVsEnumOutputs
[GuidAttribute("0A8AC2FB-87BC-4795-8C8B-47E877F48FE8")]
[InterfaceTypeAttribute()]
public interface IVsEnumOutputs
[GuidAttribute(L"0A8AC2FB-87BC-4795-8C8B-47E877F48FE8")]
[InterfaceTypeAttribute()]
public interface class IVsEnumOutputs
[<GuidAttribute("0A8AC2FB-87BC-4795-8C8B-47E877F48FE8")>]
[<InterfaceTypeAttribute()>]
type IVsEnumOutputs =  interface end
public interface IVsEnumOutputs

The IVsEnumOutputs type exposes the following members.

Methods

  Name Description
Public method Clone Creates another enumerator that contains the same enumeration state as the current one.
Public method Next Retrieves a specified number of output items in the enumeration sequence.
Public method Reset Resets the enumeration sequence to the beginning.
Public method Skip Skips over a specified number of output items in the enumeration sequence.

Top

Remarks

The outputs from a build process are private to the user. They can be categorized into output groups. Groups typically link related types of output such as source file outputs or executable file outputs.

Notes to Implementers

Implemented by projects to enable the environment to access output items from their build process.

Notes to Callers

Called by the environment to retrieve output items from a project's build process.

See Also

Reference

Microsoft.VisualStudio.Shell.Interop Namespace