Class FindMatch
Match result for Unity.FindInFile tool. Represents a single pattern match with line and column positions.
Inherited Members
Namespace: Unity.AI.MCP.Editor.ToolRegistry.Parameters
Assembly: Unity.AI.MCP.Editor.dll
Syntax
public class FindMatch
Properties
EndCol
Gets or sets the ending column number (1-based, exclusive) where the match ends.
Declaration
public int EndCol { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
EndLine
Gets or sets the ending line number (1-based) where the match ends.
Declaration
public int EndLine { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
StartCol
Gets or sets the starting column number (1-based) where the match begins.
Declaration
public int StartCol { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
StartLine
Gets or sets the starting line number (1-based) where the match begins.
Declaration
public int StartLine { get; set; }
Property Value
| Type | Description |
|---|---|
| int |