IVsDependencyProvider::EnumDependencies Method (IVsEnumDependencies^)

 

Provides access to a dependency enumerator.

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

int EnumDependencies(
	[OutAttribute] IVsEnumDependencies^% ppIVsEnumDependencies
)

Parameters

ppIVsEnumDependencies
Type: Microsoft.VisualStudio.Shell.Interop::IVsEnumDependencies^

[out] Pointer to a pointer to the IVsEnumDependencies interface of the dependency enumerator.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsDependencyProvider::EnumDependencies(
   [out] IVsEnumDependencies **ppIVsEnumDependencies
);

IVsEnumDependencies allows its caller to scroll through a set of dependencies.

Return to top
Show: