get_code_actions
List available code actions (refactorings and fixes) at a position in a C# file. Optionally specify endLine/endColumn to select a range for extract-method style refactorings. Returns action titles that can be passed to apply_code_action.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
filePath | string | ✓ | Full path to the C# source file |
line | int | ✓ | Line number (1-based) |
column | int | ✓ | Column number (1-based) |
endLine | int? | End line for text selection (1-based, optional) | |
endColumn | int? | End column for text selection (1-based, optional) |