Class FindInFileResponse
Response data for Unity.FindInFile tool.
Inherited Members
Namespace: Unity.AI.MCP.Editor.ToolRegistry.Parameters
Assembly: Unity.AI.MCP.Editor.dll
Syntax
public class FindInFileResponse
Properties
Count
Gets or sets the total count of matches found.
Declaration
[JsonProperty("count")]
public int Count { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Matches
Gets or sets the list of matches found, each containing startLine, startCol, endLine, and endCol properties.
Declaration
[JsonProperty("matches")]
public List<Dictionary<string, object>> Matches { get; set; }
Property Value
| Type | Description |
|---|---|
| List<Dictionary<string, object>> |
Sha256
Gets or sets the SHA-256 hash of the file that was searched. Useful for change detection and file integrity verification.
Declaration
[JsonProperty("sha256")]
public string Sha256 { get; set; }
Property Value
| Type | Description |
|---|---|
| string |