Class ServerTermbase
Represents a reference to a server-based termbase that can be added to the TermbaseConfiguration of a project. A server-based reference is interpreted together with the TermbaseServerUri, which identifies the server on which the termbase is hosted.
Inherited Members
Namespace: SdlSdl.ProjectAutomationCore
Assembly: Sdl.ProjectAutomation.Core.dll
Syntax
public class ServerTermbase : Termbase
Constructors
ServerTermbase(string)
Constructor with a server-based termbase name.
Declaration
public ServerTermbase(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
ServerTermbase(string, string)
Constructor with a server-based termbase name.
Declaration
public ServerTermbase(string name, string settingsXML)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
string | settingsXML | Project termbase settings |
ServerTermbase(string, string, bool)
Constructor with a server-based termbase name, filter name and enabled value.
Declaration
public ServerTermbase(string name, string filterName, bool enabled)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
string | filterName | The name of the termbase filter that should be used when performing lookups in this termbase. This should be the valid name of a filter that is defined within the termbase. |
bool | enabled | Whether the termbase should be enabled. When set to , the termbase is excluded from
all termbase-related operations.
|
ServerTermbase(string, string, string, bool)
Constructor with a server-based termbase name, filter name and enabled value.
Declaration
public ServerTermbase(string name, string settingsXML, string filterName, bool enabled)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
string | settingsXML | Project termbase settings. Use null for default settings |
string | filterName | The name of the termbase filter that should be used when performing lookups in this termbase. This should be the valid name of a filter that is defined within the termbase. |
bool | enabled | Whether the termbase should be enabled. When set to , the termbase is excluded from
all termbase-related operations.
|