Represents the order in which termbases in a termbase configuration (TermbaseConfiguration) are searched.

Namespace: Sdl.ProjectAutomation.Core
Assembly: Sdl.ProjectAutomation.Core (in Sdl.ProjectAutomation.Core.dll) Version: 1.0.0.0 (1.2.3064.0)

Syntax

C#
public enum TermbaseSearchOrder
Visual Basic
Public Enumeration TermbaseSearchOrder
Visual C++
public enum class TermbaseSearchOrder

Members

Member nameValueDescription
Hierarchical0 The termbases are searched sequentially in the order that they appear in the Termbases list. As soon as results are found in a termbase, the search stops and the remaining termbases are not searched anymore.
Sequential1 The termbases are searched sequentially in the order that they appear in the Termbases list. All termbases are searched and the results are returned, in the order that the originating termbases appeared in the Termbases list.
Parallel2 All termbases in the Termbases list are searched in parallel and the results are sorted alphabetically.

See Also