Interface ITerminologyImport
This interface should be implemented by terminology providers in order to provide import functionality
Namespace: SdlSdl.TerminologySdl.Terminology.TerminologyProviderCore
Assembly: Sdl.Terminology.TerminologyProvider.Core.dll
Syntax
public interface ITerminologyImport
Methods
Import(TerminologyImportType, List<string>, Dictionary<string, string>)
Performs a termbase import
Declaration
void Import(TerminologyImportType importType, List<string> importFiles, Dictionary<string, string> importProperties = null)
Parameters
Type | Name | Description |
---|---|---|
TerminologyImportType | importType | The import type |
Liststring | importFiles | The path of the import files |
Dictionarystringstring | importProperties | The import properties |
Remarks
Use the import properties to pass additional parameters to the import process. E.g. add the "xdtFile" property for a MultiTerm termbase definition file
Import(TerminologyImportType, string, string)
Performs a termbase import
Declaration
void Import(TerminologyImportType importType, string importFile, string termbaseDefinition = null)
Parameters
Type | Name | Description |
---|---|---|
TerminologyImportType | importType | The import type |
string | importFile | The path of the import file |
string | termbaseDefinition | The path of the termbase definition file |