[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/Search.SearchQueryError-ctor.html [Back]  [Original]

Unity - Scripting API: Search.SearchQueryError.SearchQueryError
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    SearchQueryError Constructor

    Suggest a change

    Success!

    Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

    Close

    Submission failed

    For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

    Close
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Declaration

    public SearchQueryError(int index, int length, string reason, SearchContext context, SearchProvider provider, bool fromSearchQuery, SearchQueryErrorType type);

    Parameters

    Parameter Description
    index Index where the error occurred.
    length Length of the block that was being parsed.
    reason The reason for the error.
    context The context in which this error was logged.
    provider Which search provider logged this error.
    fromSearchQuery Set to true if this error comes from parsing the searchQuery. This will correctly offset the index with respect to the raw text.
    type The type of query error. See SearchQueryErrorType. Defaults to SearchQueryErrorType.Error.

    Description

    Creates a new SearchQueryError.


    Declaration

    public SearchQueryError(QueryError error, SearchContext context, SearchProvider provider, bool fromSearchQuery);

    Parameters

    Parameter Description
    error The original QueryError.
    context The context in which this error was logged.
    provider Which search provider logged this error.
    fromSearchQuery Set to true if this error comes from parsing the searchQuery. This will correctly offset the index with respect to the raw text.

    Description

    Creates a new SearchQueryError from an existing QueryError.


    Web Proxy Viewer  |  New URL  |  Original Page