Lire en anglais

Partager via


IVsObjectList2.CanGoToSource Method

Returns a flag indicating if navigation to the given list item's source is supported.

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

Syntax

int CanGoToSource(
    uint index,
    VSOBJGOTOSRCTYPE SrcType,
    out int pfOK
)

Parameters

  • index
    Type: System.UInt32
    [in] Specifies the index of the list item of interest.
  • pfOK
    Type: System.Int32%
    [out] Pointer to a flag indicating whether navigation is supported.

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:

[C++]

HRESULT IVsObjectList2::CanGoToSource(
   [in] ULONG Index, 
   [in] VSOBJGOTOSRCTYPE SrcType, 
   [out] BOOL *pfOK
);

Returns true in pfOK if navigation to the source of the specified type (definition, declaration, or reference), is possible, false otherwise. This is what enables the GoToDefinition, GoToDeclaration, and GoToReference commands in the UI. Most languages do not have a separate declaration from the definition.

.NET Framework Security

See Also

Reference

IVsObjectList2 Interface

IVsObjectList2 Members

Microsoft.VisualStudio.Shell.Interop Namespace