Create a combined thesaurus.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal name As String _ 
)
C#
public NetricsCombinedThesaurus(
   string name
)
C++
public:
 NetricsCombinedThesaurus(
   String name
) sealed 
J#
public NetricsCombinedThesaurus(
   string name
)
JScript
public function NetricsCombinedThesaurus(
   name : String
)

Parameters

name
The name of the combined thesaurus to be created.

Remarks

Create an empty combined thesaurus. Records must be added using the addEquivalenceClass or addClassesFrom methods.

A combined thesaurus can be used to define both substitutions as with a standard NetricsThesaurus and weighted terms as with a NetricsWeightedDictionary. The names for NetricsThesaurus objects, NetricsWeightedDictionary objects and NetricsCombinedThesaurus objects are kept in a common pool. Thus creating a NetricsCombinedThesaurus with the same name as a NetricsThesaurus or NetricsWeightedDictionary will overwrite the other object on the server.

See Also