IReadOnlyDictionary<TKey, TValue> Interface

Defines methods and properties that handle read-only dictionary collections.

Namespace:  Microsoft.BusinessData.Infrastructure.Collections
Assembly:  Microsoft.BusinessData (in Microsoft.BusinessData.dll)

Syntax

'Declaration
Public Interface IReadOnlyDictionary(Of TKey, TValue) _
    Inherits IReadOnlyCollection(Of KeyValuePair(Of TKey, TValue)),  _
    IEnumerable(Of KeyValuePair(Of TKey, TValue)), IEnumerable
'Usage
Dim instance As IReadOnlyDictionary(Of TKey, TValue)
public interface IReadOnlyDictionary<TKey, TValue> : IReadOnlyCollection<KeyValuePair<TKey, TValue>>, 
    IEnumerable<KeyValuePair<TKey, TValue>>, IEnumerable

Type Parameters

  • TKey
    The key of the dictionary entry.
  • TValue
    The value at the dictionary entry.

See Also

Reference

IReadOnlyDictionary<TKey, TValue> Members

Microsoft.BusinessData.Infrastructure.Collections Namespace