Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class MatchQuery.ReadOnly

Inheritance
object
MatchQuery.ReadOnly
Implements
IEquatable<MatchQuery.ReadOnly>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: Couchbase.Search.Queries.Simple
Assembly: Couchbase.NetClient.dll
Syntax
public record MatchQuery.ReadOnly : IEquatable<MatchQuery.ReadOnly>

Constructors

View Source

ReadOnly(ReadOnly)

Declaration
protected ReadOnly(MatchQuery.ReadOnly original)
Parameters
Type Name Description
MatchQuery.ReadOnly original
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
Type Name Description
string Match
string Analyzer
int PrefixLength
int Fuzziness
string Field
MatchOperator? MatchOperator

Properties

View Source

Analyzer

Declaration
public string Analyzer { get; init; }
Property Value
Type Description
string
View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
View Source

Field

Declaration
public string Field { get; init; }
Property Value
Type Description
string
View Source

Fuzziness

Declaration
public int Fuzziness { get; init; }
Property Value
Type Description
int
View Source

Match

Declaration
public string Match { get; init; }
Property Value
Type Description
string
View Source

MatchOperator

Declaration
public MatchOperator? MatchOperator { get; init; }
Property Value
Type Description
MatchOperator?
View Source

PrefixLength

Declaration
public int PrefixLength { get; init; }
Property Value
Type Description
int

Methods

View Source

Deconstruct(out string, out string, out int, out int, out string, out MatchOperator?)

Declaration
public void Deconstruct(out string Match, out string Analyzer, out int PrefixLength, out int Fuzziness, out string Field, out MatchOperator? MatchOperator)
Parameters
Type Name Description
string Match
string Analyzer
int PrefixLength
int Fuzziness
string Field
MatchOperator? MatchOperator
View Source

Equals(ReadOnly?)

Declaration
public virtual bool Equals(MatchQuery.ReadOnly? other)
Parameters
Type Name Description
MatchQuery.ReadOnly other
Returns
Type Description
bool
View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(ReadOnly?, ReadOnly?)

Declaration
public static bool operator ==(MatchQuery.ReadOnly? left, MatchQuery.ReadOnly? right)
Parameters
Type Name Description
MatchQuery.ReadOnly left
MatchQuery.ReadOnly right
Returns
Type Description
bool
View Source

operator !=(ReadOnly?, ReadOnly?)

Declaration
public static bool operator !=(MatchQuery.ReadOnly? left, MatchQuery.ReadOnly? right)
Parameters
Type Name Description
MatchQuery.ReadOnly left
MatchQuery.ReadOnly right
Returns
Type Description
bool

Implements

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