Interface IImportDestinationAsync
Assembly: Sdl.Core.TM.ImportExport.dll
Syntax
public interface IImportDestinationAsync : IImportDestination
Methods
Declaration
Task<ImportResult[]> AddTranslationUnitsMaskedAsync(TranslationUnit[] tus, ImportSettings settings, bool[] mask)
Parameters
Returns
| Type |
Description |
| System.Threading.Tasks.Task<ImportResult[]> |
|
GetFieldDefinitionsAsync()
Declaration
Task<FieldDefinitions> GetFieldDefinitionsAsync()
Returns
GetLanguageResourcesAsync()
Declaration
Task<LanguageResource[]> GetLanguageResourcesAsync()
Returns
| Type |
Description |
| System.Threading.Tasks.Task<Sdl.LanguagePlatform.TranslationMemoryImpl.LanguageResource[]> |
|
Declaration
Task UpdateFieldDefinitionsAsync(FieldDefinitions mergedFieldDefinitions)
Parameters
| Type |
Name |
Description |
| FieldDefinitions |
mergedFieldDefinitions |
Fields that either 1. were only defined in the incoming data or 2. were defined in incoming data and destination data, but with additional picklist values in the incoming data (field contains a merge of both)
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Declaration
Task UpdateLanguageResourcesAsync(List<LanguageResource> mergedLanguageResources)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.List<Sdl.LanguagePlatform.TranslationMemoryImpl.LanguageResource> |
mergedLanguageResources |
Language resources that either 1. were only defined in the incoming data or 2. were defined in incoming and destination data, but with additional values in the incoming data (resource contains a merge of both)
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|