IVsLibrary2::GetLibList Method (LIB_PERSISTTYPE, IVsLiteTreeList^)

 

Returns the list of browse containers currently being browsed by the library as an IVsLiteTreeList interface.

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

int GetLibList(
	LIB_PERSISTTYPE lptType,
	[OutAttribute] IVsLiteTreeList^% ppList
)

Parameters

lptType
Type: Microsoft.VisualStudio.Shell.Interop::LIB_PERSISTTYPE

[in] Specifies type of library to return. For a list of lptType values, see LIB_PERSISTTYPE.

ppList
Type: Microsoft.VisualStudio.Shell.Interop::IVsLiteTreeList^

[out] Pointer to an IVsLiteTreeList.

Return Value

Type: System::Int32

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

From vsshell80.idl:

HRESULT IVsLibrary2::GetLibList(
   [in] LIB_PERSISTTYPE lptType, 
   [out, retval] IVsLiteTreeList **ppList
);

This method returns an IVsLiteTreeList interface (browse container), which gives the object manager access to the contents of a library. The lptType parameter specifies which type of library, either project or global, is to be returned.

Return to top
Show: