IReadOnlyNamedDictionary<TValue> Interface
Represents a special implementation of IReadOnlyDictionary, where the key is a string.
Namespace: Microsoft.BusinessData.Infrastructure.Collections
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Interface IReadOnlyNamedDictionary(Of TValue) _
Inherits IReadOnlyDictionary(Of String, TValue), IReadOnlyCollection(Of KeyValuePair(Of String, TValue)), _
IEnumerable(Of KeyValuePair(Of String, TValue)), IEnumerable
'Usage
Dim instance As IReadOnlyNamedDictionary(Of TValue)
public interface IReadOnlyNamedDictionary<TValue> : IReadOnlyDictionary<string, TValue>,
IReadOnlyCollection<KeyValuePair<string, TValue>>, IEnumerable<KeyValuePair<string, TValue>>,
IEnumerable
Type Parameters
- TValue
The value parameter.