Group
Show / Hide Table of Contents

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.

Inheritance
System.Object
Completion
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.API.MatchV2.Response
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class Completion

Properties

| Improve this Doc View Source

Field

The field name.

Declaration
public string Field { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

FieldLabel

The display label of the field.

Declaration
public string FieldLabel { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Item

The completion suggestion.

Declaration
public string Item { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ItemHighlighted

Same as the item, but with highlighting tags showing the matching parts of the suggestion.

Declaration
public string ItemHighlighted { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾