IVsSimpleLibrary2::CreateNavInfo Method (array<SYMBOL_DESCRIPTION_NODE>^, UInt32, IVsNavInfo^)

 

Reserved for future use.

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

int CreateNavInfo(
	array<SYMBOL_DESCRIPTION_NODE>^ rgSymbolNodes,
	unsigned int ulcNodes,
	[OutAttribute] IVsNavInfo^% ppNavInfo
)

Parameters

rgSymbolNodes
Type: array<Microsoft.VisualStudio.Shell.Interop::SYMBOL_DESCRIPTION_NODE>^

[in] An array of SYMBOL_DESCRIPTION_NODE objects describing each node in the tree.

ulcNodes
Type: System::UInt32

[in] The number of objects in the rgSymbolNodes array.

ppNavInfo
Type: Microsoft.VisualStudio.Shell.Interop::IVsNavInfo^

[out] Returns an IVsNavInfo object representing the navigation information for all nodes in the tree.

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 IVsSimpleLibrary2::CreateNavInfo(
   [in, size_is(ulcNodes)] SYMBOL_DESCRIPTION_NODE   rgSymbolNodes[], 
   [in]                    ULONG                     ulcNodes, 
   [out]                   IVsNavInfo              **ppNavInfo
);
Return to top
Show: