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. Returns an envelope with items sorted by kind then title, totalCount, truncated, and limit (default 100).
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) | |
limit | int? | Maximum number of items to return (default: 100). Items are sorted by kind then title. |