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: Sdl.ProjectAutomation.Core
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 |
---|---|---|
System.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 |
---|---|---|
System.String | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
System.String | settingsXML | Project termbase settings |
ServerTermbase(String, String, Boolean)
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 |
---|---|---|
System.String | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
System.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. |
System.Boolean | enabled | Whether the termbase should be enabled. When set to , the termbase is excluded from
all termbase-related operations.
|
ServerTermbase(String, String, String, Boolean)
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 |
---|---|---|
System.String | name | The name of the termbase. This name will be interpreted together with the TermbaseServerUri to identify the termbase to be used. |
System.String | settingsXML | Project termbase settings. Use null for default settings |
System.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. |
System.Boolean | enabled | Whether the termbase should be enabled. When set to , the termbase is excluded from
all termbase-related operations.
|