PutAsync Method
PutAsync(TKey, TValue)
Stores a key-value pair in the multi-map.
Declaration
Task<bool> PutAsync(TKey key, TValue value)
Parameters
TKey | key | the key to be stored |
TValue | value | the value to be stored |
Returns
Task<Boolean> |
|
Remarks
This method uses GetHashCode
and Equals
of binary form of
the key
, not the actual implementations of GetHashCode
and Equals
defined in key
's class.