JetBrains Rider 2017.3 Help

Call Tracking

Call Tracking enables you to view and navigate through call chains in your code. JetBrains Rider Call Tracking lets you explore functions, events, interfaces, and closures.

In the hierarchy view, JetBrains Rider uses icons to distinguish between different kinds of symbols. You can learn meanings of the icons on the Symbol Icons Schemes reference page.

To investigate outgoing calls

  1. Place the caret at the name of a method, event, property or constructor.
  2. Press Ctrl+Shift+Alt+A and choose Outgoing Calls in the Inspect This drop-down list.
  3. In the Inspection Results window that opens, you can expand the member node to run code analysis on it and to display all members called by the current member. You can also expand each of the child nodes.
    Outgoing calls in the Inspection Results window

To investigate incoming calls

  1. Place the caret at the name of a method, event, property or constructor.
  2. Press Ctrl+Shift+Alt+A and choose Incoming Calls in the Inspect This drop-down list.
  3. In the Inspection Results window that opens, you can expand the member node to run code analysis and to display all members that call the current member. You can also expand each of the child nodes.
    Incoming calls in the Inspection Results window
Last modified: 19 April 2018

See Also