Click or drag to resize

IFullTextQueryRow Interface

An interface describing an entry in the result of a full text query

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0125
Syntax
C#
public interface IFullTextQueryRow : IQueryRow

The IFullTextQueryRow type exposes the following members.

Properties
  NameDescription
Public propertyDocument
Gets the document that was used for creating this entry
(Inherited from IQueryRow.)
Public propertyDocumentID
Gets the ID of the document that was used for creating this entry
(Inherited from IQueryRow.)
Public propertyFullTextMatched
Gets the full text that was matched
Public propertyMatchCount
Gets the number of matches
Public propertySequence
Gets the sequence of the document that was used for creating this entry
(Inherited from IQueryRow.)
Top
Methods
  NameDescription
Public methodGetBoolean
Gets the Boolean value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetDate
Gets the DateTimeOffset value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetDouble
Gets the Double value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetInt
Gets the Int32 value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetLong
Gets the Int64 value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetObject
Gets the value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetString
Gets the String value of the nth selected value of the query row (in order of what was specified in the SELECT portion of the query)
(Inherited from IQueryRow.)
Public methodGetTermIndex
Gets the index of the term that was matched in the given match number
Public methodGetTextRange
Gets the range in the string for the given full text match
Top
See Also