IGraphNavigateToItem Interface

Definition

Interface representing an extension that can navigate to the item represented by a GraphObject.

public interface class IGraphNavigateToItem : Microsoft::VisualStudio::GraphModel::IGraphProviderRankableExtension
public interface IGraphNavigateToItem : Microsoft.VisualStudio.GraphModel.IGraphProviderRankableExtension
type IGraphNavigateToItem = interface
    interface IGraphProviderRankableExtension
Public Interface IGraphNavigateToItem
Implements IGraphProviderRankableExtension
Implements

Methods

GetRank(GraphObject)

Get a rank value associated with given graph object. The greater is this value the more likely this extension instance will be choosen when more than one provider supports this extension type on a graph object. For example the C# provider's IGraphNavigateToItem extension will return greater value if the graph object represents a code element from a C# project and lesser value for a code element from metadata (which might be handled better by another provider).

(Inherited from IGraphProviderRankableExtension)
NavigateTo(GraphObject)

Navigates to the item represented by the Graphobject.

Applies to