Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Interface IFacetResult

Interface to describe Facet results.

Namespace: Couchbase.Search
Assembly: Couchbase.NetClient.dll
Syntax
public interface IFacetResult

Properties

View Source

FacetResultType

Gets the type of the facet result.

Declaration
FacetResultType FacetResultType { get; }
Property Value
Type Description
FacetResultType

The type of the facet result.

View Source

Field

Gets the field used for the facet.

Declaration
string Field { get; }
Property Value
Type Description
string

The field.

View Source

Missing

Gets the number of misses for the facet.

Declaration
long Missing { get; }
Property Value
Type Description
long

The missing.

View Source

Name

Gets or sets the name of the result.

Declaration
string Name { get; set; }
Property Value
Type Description
string

The name.

View Source

Other

Gets the number of others for the facet.

Declaration
long Other { get; }
Property Value
Type Description
long

The other.

View Source

Total

Gets the total number of hits for the facet.

Declaration
long Total { get; }
Property Value
Type Description
long

The total.

  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.