roslyn:get_outgoing_calls
Analyze method dependencies by identifying all methods and properties called from a specific location in C# code. Returns called symbols with locations to understand behavior and trace call chains.
Instructions
Get all methods and properties that a method calls. Helps understand method dependencies and behavior. Returns list of called symbols with locations. IMPORTANT: Uses ZERO-BASED coordinates (editor line - 1).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to source file | |
| line | Yes | Zero-based line number inside the method | |
| column | Yes | Zero-based column number | |
| maxDepth | No | How deep to trace calls (1 = direct only, default: 1) |