Gets a list of all meta tags from the text.

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

Syntax

C#
List<string> GetTagWords(
	Guid languageId,
	string stringToParse,
	bool disableIgnoreWords
)
Visual Basic
Function GetTagWords ( 
	languageId As Guid,
	stringToParse As String,
	disableIgnoreWords As Boolean
) As List(Of String)
Visual C++
List<String^>^ GetTagWords(
	Guid languageId, 
	String^ stringToParse, 
	bool disableIgnoreWords
)
F#
abstract GetTagWords : 
        languageId : Guid * 
        stringToParse : string * 
        disableIgnoreWords : bool -> List<string> 

Parameters

languageId
Type: System..::..Guid
Ignored words for language
stringToParse
Type: System..::..String
Text to parse
disableIgnoreWords
Type: System..::..Boolean
Parse all words (Disable ignore word list)

Return Value

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

See Also