Interface IDistributedDictionary<TKey, TValue>
This interface contains methods and parameters for Distributed Dictionary.
Inherited Members
Assembly: Alachisoft.NCache.Client.dll
Syntax
public interface IDistributedDictionary<TKey, TValue> : IDictionary<TKey, TValue>, ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable, IDistributedDataTypes, ILockable, INotifiable
Type Parameters
| Name | Description |
|---|---|
| TKey | The type of keys in the Dictionary. |
| TValue | The type of values in the Dictionary. |
Methods
| Name | Description |
|---|---|
| Get(ICollection<TKey>) | Returns the values associated with the specified keys. |
| Insert(IDictionary<TKey, TValue>) | Insert elements with the provided keys and values in IDistributedDictionary. |
| Remove(ICollection<TKey>) | Removes the element with the specified keys from IDistributedDictionary. |