Class Keyspace
Assembly: Couchbase.NetClient.dll
Syntax
public record Keyspace : IEquatable<Keyspace>
Constructors
View Source
Keyspace(Keyspace)
Declaration
protected Keyspace(Keyspace original)
Parameters
View Source
Keyspace(ICouchbaseCollection)
Declaration
public Keyspace(ICouchbaseCollection collection)
Parameters
View Source
Keyspace(string, string, string)
Declaration
public Keyspace(string BucketName, string ScopeName, string CollectionName)
Parameters
Properties
View Source
BucketName
Declaration
public string BucketName { get; init; }
Property Value
View Source
CollectionName
Declaration
public string CollectionName { get; init; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
ScopeName
Declaration
public string ScopeName { get; init; }
Property Value
Methods
View Source
Deconstruct(out string, out string, out string)
Declaration
public void Deconstruct(out string BucketName, out string ScopeName, out string CollectionName)
Parameters
View Source
Equals(Keyspace?)
Declaration
public virtual bool Equals(Keyspace? other)
Parameters
Returns
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToCouchbaseCollection(ICluster, CancellationToken)
Declaration
public Task<ICouchbaseCollection> ToCouchbaseCollection(ICluster cluster, CancellationToken cancellationToken = default)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(Keyspace?, Keyspace?)
Declaration
public static bool operator ==(Keyspace? left, Keyspace? right)
Parameters
Returns
View Source
operator !=(Keyspace?, Keyspace?)
Declaration
public static bool operator !=(Keyspace? left, Keyspace? right)
Parameters
Returns
Implements