SearchServiceApplication.GetSpecialTermsInfo Method
Retrieves a dictionary of KeyWord objects from the site collection for a specified KeyWord consumer group.
Namespace: Microsoft.Office.Server.Search.Administration
Assembly: Microsoft.Office.Server.Search (in Microsoft.Office.Server.Search.dll)
Syntax
'Declaration
Public Function GetSpecialTermsInfo ( _
view As KeywordView, _
filter As KeywordFilter, _
value As String, _
consumerGpId As String _
) As Dictionary(Of String, Keyword)
'Usage
Dim instance As SearchServiceApplication
Dim view As KeywordView
Dim filter As KeywordFilter
Dim value As String
Dim consumerGpId As String
Dim returnValue As Dictionary(Of String, Keyword)
returnValue = instance.GetSpecialTermsInfo(view, _
filter, value, consumerGpId)
public Dictionary<string, Keyword> GetSpecialTermsInfo(
KeywordView view,
KeywordFilter filter,
string value,
string consumerGpId
)
Parameters
view
Type: Microsoft.Office.Server.Search.Administration.KeywordViewOne of the enumeration values that specifies the type of KeyWord objects to include in the result set.
filter
Type: Microsoft.Office.Server.Search.Administration.KeywordFilterOne of the enumeration values that specifies which KeyWord attributes are compared with the value.
value
Type: System.StringA string that is used for comparison when performing the filtering.
consumerGpId
Type: System.StringThe ID of the KeyWord consumer group.
Return Value
Type: System.Collections.Generic.Dictionary<String, Keyword>
The dictionary consists of a KeyWord and Term().
Implements
Remarks
The list of KeyWord attributes can be filtered according to criteria specified in the view and filter.
See Also
Reference
SearchServiceApplication Class