Interface INotifyLookup<TSource, TKey>
Denotes an incremental lookup
Namespace: NMF.Expressions.Linq
Assembly: NMF.Expressions.Utilities.dll
Syntax
public interface INotifyLookup<TSource, TKey>
Type Parameters
Name | Description |
---|---|
TSource | The source type of the lookup |
TKey | The key type for which the elements should be looked up |
Properties
| Edit this page View Sourcethis[TKey]
Gets the collection of elements for the given key
Declaration
INotifyEnumerable<TSource> this[TKey key] { get; }
Parameters
Type | Name | Description |
---|---|---|
TKey | key | The key |
Property Value
Type | Description |
---|---|
INotifyEnumerable<TSource> | A collection of associated elements |
Keys
Gets a collection of keys
Declaration
INotifyEnumerable<TKey> Keys { get; }
Property Value
Type | Description |
---|---|
INotifyEnumerable<TKey> |