Interface ITerminologyImport
This interface should be implemented by terminology providers in order to provide import functionality
Namespace: Sdl.Terminology.TerminologyProvider.Core
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 |
List<String> | importFiles | The path of the import files |
Dictionary<String, String> | 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 |