Constructor that takes the given cascade entry items, cascade search mode, and override parent flag.

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 TranslationProviderConfiguration(
	List<TranslationProviderCascadeEntry> entries,
	bool stopSearchingWhenResultsFound,
	bool overrideParent
)
Visual Basic
Public Sub New ( _
	entries As List(Of TranslationProviderCascadeEntry), _
	stopSearchingWhenResultsFound As Boolean, _
	overrideParent As Boolean _
)
Visual C++
public:
TranslationProviderConfiguration(
	List<TranslationProviderCascadeEntry^>^ entries, 
	bool stopSearchingWhenResultsFound, 
	bool overrideParent
)

Parameters

entries
Type: System.Collections.Generic..::..List<(Of <(<'TranslationProviderCascadeEntry>)>)>
The cascade entries. Can be empty, but not null.
stopSearchingWhenResultsFound
Type: System..::..Boolean
Whether to stop searching translation providers once a result has been found. The translation providers are usually searched sequentially in the order they are specified in the Entries list.
overrideParent
Type: System..::..Boolean
Whether this configuration should override the parent translation provider configuration. This is only applicable when working with a target-language specific translation provider configuration (see GetTranslationProviderConfiguration(Language) and UpdateTranslationProviderConfiguration(TranslationProviderConfiguration)).

See Also