Add term words to tags list.

Note: This method keeps track of ignored words by language.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual List<string> AddWordsToTags(
	Guid languageId,
	bool enableIgnoreWords,
	List<string> words
)
Visual Basic
Public Overridable Function AddWordsToTags ( 
	languageId As Guid,
	enableIgnoreWords As Boolean,
	words As List(Of String)
) As List(Of String)
Visual C++
public:
virtual List<String^>^ AddWordsToTags(
	Guid languageId, 
	bool enableIgnoreWords, 
	List<String^>^ words
)
F#
abstract AddWordsToTags : 
        languageId : Guid * 
        enableIgnoreWords : bool * 
        words : List<string> -> List<string> 
override AddWordsToTags : 
        languageId : Guid * 
        enableIgnoreWords : bool * 
        words : List<string> -> List<string> 

Parameters

languageId
Type: System..::..Guid
Language to search for ignored words
enableIgnoreWords
Type: System..::..Boolean
Enable ignored word parsing
words
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>
List of term words

Return Value

Type: List<(Of <(<'String>)>)>
Parsed tags

Implements

INewsBLL..::..AddWordsToTags(Guid, Boolean, List<(Of <<'(String>)>>))

See Also