Enum SearchMatchType
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.Core.dll
Classifies how a SearchResult<T> matched the input query.
public enum SearchMatchType
Fields
Acronym = 4Input matches the leading characters of consecutive words (acronym).
Contains = 3Input appears somewhere inside the candidate.
Exact = 0Whole input equals the candidate value.
Fuzzy = 5Approximate (edit-distance / typo-tolerant) match.
StartsWith = 1Candidate starts with the input.
WordStart = 2Input matches the start of a word inside the candidate.