Class VectorQueryOptions
Inheritance
VectorQueryOptions
Assembly: Couchbase.NetClient.dll
Syntax
[InterfaceStability(Level.Committed)]
public sealed record VectorQueryOptions : IEquatable<VectorQueryOptions>
Constructors
|
Edit this page
View Source
VectorQueryOptions(float?)
Declaration
public VectorQueryOptions(float? Boost = null)
Parameters
Type |
Name |
Description |
float? |
Boost |
|
Properties
|
Edit this page
View Source
Boost
Declaration
public float? Boost { get; init; }
Property Value
|
Edit this page
View Source
NumCandidates
Declaration
public uint? NumCandidates { get; init; }
Property Value
Methods
|
Edit this page
View Source
WithBoost(float)
Declaration
public VectorQueryOptions WithBoost(float boost)
Parameters
Type |
Name |
Description |
float |
boost |
|
Returns
|
Edit this page
View Source
WithNumCandidates(uint)
Declaration
public VectorQueryOptions WithNumCandidates(uint numCandidates)
Parameters
Type |
Name |
Description |
uint |
numCandidates |
|
Returns
Implements