Class TerminologyData
Data containing a list of Terms representing terminology information.
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.LanguagePlatform.TranslationMemoryApi.LiteBCM.Skeleton
Assembly: Sdl.LanguagePlatform.TranslationMemoryApi.dll
Syntax
public class TerminologyData : SkeletonItem
Constructors
TerminologyData(Int32)
Initializes a new instance of the TerminologyData class.
Declaration
public TerminologyData(int id)
Parameters
Type | Name | Description |
---|---|---|
Int32 | id | The identifier. |
Properties
Terms
Gets or sets the terms. Null items can not be added.
Declaration
public IList<Term> Terms { get; set; }
Property Value
Type | Description |
---|---|
IList<Term> | The terms. |
TermsHandler
Thread-safe handler that backs the Terms property. For simple operations, prefer using that property directly. Can be used for controlling the locking mechanism to achieve more complex transactions on the list.
Declaration
public ThreadSafeListHandler<Term> TermsHandler { get; }
Property Value
Type | Description |
---|---|
ThreadSafeListHandler<Term> |