IVsCallBrowser.SetRootAtSymbol Method

Displays the contents of a library in the Call Browser.

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

Syntax

'Declaration
Function SetRootAtSymbol ( _
    cbMode As Integer, _
    ByRef guidLib As Guid, _
    rgSymbolNodes As SYMBOL_DESCRIPTION_NODE(), _
    ulcNodes As UInteger _
) As Integer
int SetRootAtSymbol(
    int cbMode,
    ref Guid guidLib,
    SYMBOL_DESCRIPTION_NODE[] rgSymbolNodes,
    uint ulcNodes
)
int SetRootAtSymbol(
    [InAttribute] int cbMode, 
    [InAttribute] Guid% guidLib, 
    [InAttribute] array<SYMBOL_DESCRIPTION_NODE>^ rgSymbolNodes, 
    [InAttribute] unsigned int ulcNodes
)
abstract SetRootAtSymbol : 
        cbMode:int * 
        guidLib:Guid byref * 
        rgSymbolNodes:SYMBOL_DESCRIPTION_NODE[] * 
        ulcNodes:uint32 -> int 
function SetRootAtSymbol(
    cbMode : int, 
    guidLib : Guid, 
    rgSymbolNodes : SYMBOL_DESCRIPTION_NODE[], 
    ulcNodes : uint
) : int

Parameters

  • guidLib
    Type: System.Guid%
    [in] The GUID of the library to use.
  • ulcNodes
    Type: System.UInt32
    [in] Number of nodes returned—the length of rgSymbolNodes.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsCallBrowser::SetRootAtSymbol(
   [in] CALLBROWSERMODE cbMode, 
   [in] REFGUID guidLib, 
   [in, size_is(ulcNodes)] SYMBOL_DESCRIPTION_NODE rgSymbolNodes[], 
   [in] ULONG ulcNodes
);

.NET Framework Security

See Also

Reference

IVsCallBrowser Interface

Microsoft.VisualStudio.Shell.Interop Namespace