Version: 2022.2
言語: 日本語

QueryEngineFilterAttributeConstructor

マニュアルに切り替える
public QueryEngineFilterAttribute (string token, string[] supportedOperators);
public QueryEngineFilterAttribute (string token, stringComparison options, string[] supportedOperators);
public QueryEngineFilterAttribute (string token, string paramTransformerFunction, string[] supportedOperators);
public QueryEngineFilterAttribute (string token, string paramTransformerFunction, stringComparison options, string[] supportedOperators);

パラメーター

token The identifier of the filter. Typically what precedes the operator in a filter (for example, "id" in "id>=2").
supportedOperators List of supported operator tokens. This list contains the supported operator tokens. Use null or an empty list to indicate that all operators are supported.
options String comparison options.
paramTransformerFunction Name of the parameter transformer function to use with this filter. Tag the parameter transformer function with the appropriate ParameterTransformer attribute.

説明

Create a filter with the corresponding token and supported operators.


public QueryEngineFilterAttribute (string token, bool useRegularExpression, string[] supportedOperators);
public QueryEngineFilterAttribute (string token, bool useRegularExpression, stringComparison options, string[] supportedOperators);
public QueryEngineFilterAttribute (string token, bool useRegularExpression, string paramTransformerFunction, string[] supportedOperators);
public QueryEngineFilterAttribute (string token, bool useRegularExpression, string paramTransformerFunction, stringComparison options, string[] supportedOperators);

パラメーター

token The identifier of the filter or regular expression that matches the filters. Typically what precedes the operator in a filter (for example, "id" in "id>=2").
useRegularExpression Set this flag to true if the token is a regular expression.
supportedOperators List of supported operator tokens. This list contains the supported operator tokens. Use null or an empty list to indicate that all operators are supported.
options String comparison options.
paramTransformerFunction Name of the parameter transformer function to use with this filter. Tag the parameter transformer function with the appropriate ParameterTransformer attribute.

説明

Create a filter with the corresponding token and supported operators.

This constructor allows custom filters with regular expressions to be registered with an attribute.

// Define a regular expression filter for the property "property".
[MyObjectFilter("#([\\w.]+)", true)]
static Property FilterProperty(MyObjectType myObj, string filterMatch)
{
    if (myObj.property.name == filterMatch)
        return myObj.property;
    return Property.invalid;
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961