⚠️ Beta / Prerelease Documentation - Subject to change. (Api version 19.0.0.1401 | Published on 2026-02-23 14:57:33)
Search Results for

    Show / Hide Table of Contents

    Class TermbaseConfiguration

    This class represents all termbase-related settings that control which termbases are used within a project. To get the termbase configuration of a project, use GetTermbaseConfiguration(bool). To update the termbase configuration, use UpdateTermbaseConfiguration(TermbaseConfiguration).

    Inheritance
    object
    TermbaseConfiguration
    Inherited Members
    object.ToString()
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: Sdl.ProjectAutomation.Core
    Assembly: Sdl.ProjectAutomation.Core.dll
    Syntax
    public class TermbaseConfiguration

    Constructors

    TermbaseConfiguration()

    Declaration
    public TermbaseConfiguration()

    Properties

    LanguageIndexes

    Gets or sets the list of language indexes, which map a project language (source or target) onto a termbase index of the default termbase (the default termbase is the first termbase in the Termbases list). There has to be a mapping for the project source language. If there is no mapping for a certain target language, no terminology lookup will be performed for that target language.

    Declaration
    public List<TermbaseLanguageIndex> LanguageIndexes { get; set; }
    Property Value
    Type Description
    List<TermbaseLanguageIndex>

    TermRecognitionOptions

    Gets or sets the terminology recognition options, which control the terminology lookup process.

    Declaration
    public TermRecognitionOptions TermRecognitionOptions { get; set; }
    Property Value
    Type Description
    TermRecognitionOptions

    Termbases

    Gets or sets the list of termbases in this configuration. The first termbase in the list if the default termbase.

    Declaration
    public List<Termbase> Termbases { get; set; }
    Property Value
    Type Description
    List<Termbase>
    In this article
    Back to top Generated by DocFX