Struct BaseColumnEncryptionPolicy<TKey>.ColMetadataKey
Type used by the internal map that manages the metadata of the encrypted columns. It is used to check whether a particular column is encrypted or not.
Assembly: Cassandra.dll
protected struct BaseColumnEncryptionPolicy<TKey>.ColMetadataKey : IEquatable<BaseColumnEncryptionPolicy<TKey>.ColMetadataKey>
Properties
The encrypted column name.
Declaration
public string Column { get; set; }
Property Value
Keyspace of the encrypted column's table.
Declaration
public string Keyspace { get; set; }
Property Value
The encrypted column's table.
Declaration
public string Table { get; set; }
Property Value
Methods
Declaration
public bool Equals(BaseColumnEncryptionPolicy<TKey>.ColMetadataKey other)
Parameters
Returns
Declaration
public override bool Equals(object obj)
Parameters
Type |
Name |
Description |
object |
obj |
|
Returns
Overrides
Declaration
public override int GetHashCode()
Returns
Overrides
Operators
Declaration
public static bool operator ==(BaseColumnEncryptionPolicy<TKey>.ColMetadataKey left, BaseColumnEncryptionPolicy<TKey>.ColMetadataKey right)
Parameters
Returns
Declaration
public static bool operator !=(BaseColumnEncryptionPolicy<TKey>.ColMetadataKey left, BaseColumnEncryptionPolicy<TKey>.ColMetadataKey right)
Parameters
Returns
Implements