Class Completion
This object describes a single auto-completion result. The auto-completion service returns a list of these completions. Besides the actual suggested completion item, it contains the field name and field label of search field this suggestion should be targeted to.
public class Completion
- Inheritance
-
Completion
- Inherited Members
Properties
Field
The field name.
public string Field { get; set; }
Property Value
FieldLabel
The display label of the field.
public string FieldLabel { get; set; }
Property Value
Item
The completion suggestion.
public string Item { get; set; }
Property Value
ItemHighlighted
Same as the item, but with highlighting tags showing the matching parts of the suggestion.
public string ItemHighlighted { get; set; }