Enum StringSearchOption
Available options for string searches.
Namespace: Unity.Cloud.Assets
Assembly: Unity.Cloud.Assets.dll
Syntax
public enum StringSearchOption
Fields
Name | Description |
---|---|
ExactMatch | Searches for values that are an exact match to the given search term. |
Fuzzy | Searches for values similar to the given search term. |
Prefix | Searches for values that start with the given search term. |
Wildcard | Default search option, accepts wildcard characters '?' and '*'. |