Interface IDictionaryPropertyBag<TDictionary, TKey, TValue>
Base typed interface for implementing dictionary based property bags.
Inherited Members
Namespace: Unity.Properties
Syntax
public interface IDictionaryPropertyBag<TDictionary, TKey, TValue> : ICollectionPropertyBag<TDictionary, KeyValuePair<TKey, TValue>>, IPropertyBag<TDictionary>, IPropertyBag, ICollectionPropertyBagAccept<TDictionary>, IDictionaryPropertyBagAccept<TDictionary>, IDictionaryPropertyAccept<TDictionary>, IKeyedProperties<TDictionary, object> where TDictionary : IDictionary<TKey, TValue>
Type Parameters
Name | Description |
---|---|
TDictionary | The dictionary type. |
TKey | The dictionary key type. |
TValue | The dictionary value type. |