Note
The enumerator of the returned collection does not support the IEnumerator.Reset method.
public ICollection<TValue> Values { get; }
Public ReadOnly Property Values As ICollection(Of TValue)
Get
public:
virtual property ICollection<TValue>^ Values {
ICollection<TValue>^ get () sealed;
}
abstract Values : ICollection<'TValue> with get
override Values : ICollection<'TValue> with get
The order of the values in the ICollectionT represents the evaluation order. When the CacheTKey, TValue is full, the element with the value key will be dropped.
The returned ICollectionT is not a static copy; instead, the ICollectionT refers back to the values in the original CacheTKey, TValue. Therefore, changes to the CacheTKey, TValue continue to be reflected in the ICollectionT.
Retrieving the value of this property is an O(1) operation.