Enum SearchMode
Specifies the search type.
Namespace: Sdl.LanguagePlatform.TranslationMemory
Assembly: Sdl.LanguagePlatform.TranslationMemory.dll
Syntax
public enum SearchMode
Fields
| Name | Description |
|---|---|
| ConcordanceSearch | Performs a concordance search on the source segments, using the source character-based index if it exists or the default word-based index otherwise. |
| DuplicateSearch | Performs a search on the source and target hashes for duplicate search during import (only used internally). |
| ExactSearch | Performs only an exact search, without fuzzy search. |
| FullSearch | Performs a full search, i.e. a combined exact/fuzzy search. In contrast to NormalSearch, fuzzy search is always triggered, even if exact matches are found. |
| FuzzySearch | Performs only a fuzzy search. |
| NormalSearch | Performs a normal search, i.e. a combined exact/fuzzy search. Fuzzy search is only triggered if no exact matches are found. |
| TargetConcordanceSearch | Performs a concordance search on the target segments, if the target character-based index exists. |