docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class FindInFileResponse

    Response data for Unity.FindInFile tool.

    Inheritance
    object
    FindInFileResponse
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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
    In This Article
    Back to top
    Copyright © 2026 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)