Class MatchQuery.ReadOnly
Inheritance
MatchQuery.ReadOnly
Assembly: Couchbase.NetClient.dll
Syntax
public record MatchQuery.ReadOnly : IEquatable<MatchQuery.ReadOnly>
Constructors
|
Edit this page
View Source
ReadOnly(string, string, int, int, string, MatchOperator?)
Declaration
public ReadOnly(string Match, string Analyzer, int PrefixLength, int Fuzziness, string Field, MatchOperator? MatchOperator)
Parameters
Properties
|
Edit this page
View Source
Analyzer
Declaration
public string Analyzer { get; init; }
Property Value
|
Edit this page
View Source
Field
Declaration
public string Field { get; init; }
Property Value
|
Edit this page
View Source
Fuzziness
Declaration
public int Fuzziness { get; init; }
Property Value
|
Edit this page
View Source
Match
Declaration
public string Match { get; init; }
Property Value
|
Edit this page
View Source
MatchOperator
Declaration
public MatchOperator? MatchOperator { get; init; }
Property Value
|
Edit this page
View Source
PrefixLength
Declaration
public int PrefixLength { get; init; }
Property Value
Implements