Version: 2022.2
言語: 日本語
public bool TryGetFilter (string token, out Search.IQueryEngineFilter filter);
public bool TryGetFilter (Regex token, out Search.IQueryEngineFilter filter);

パラメーター

token The token used to create the filter.
filter The existing IQueryEngineFilter, or null if it does not exist.

戻り値

bool Returns true if the filter is retrieved or false if the filter does not exist.

説明

Get a filter by its token.

This method tries to retrieve a filter by its token. If it exists, it will be put in the output parameter "filter" and the function returns true. If the filter does not exist, the parameter "filter" is set to null and the function returns false.

// Get the filter corresponding to the token "id"
if (!queryEngine.TryGetFilter("id", out var idFilter))
    Debug.LogError("The filter \"id\" should have been found.");

See GetAllFilters for a complete example.