Interface IStore<T>
- Namespace
- Org.BouncyCastle.Utilities.Collections
- Assembly
- BouncyCastle.Cryptography.dll
A generic interface describing a simple store of objects.
public interface IStore<out T>
Type Parameters
TThe covariant type of stored objects.
Methods
EnumerateMatches(ISelector<T>)
Enumerate the (possibly empty) collection of objects matched by the given selector.
IEnumerable<out T> EnumerateMatches(ISelector<out T> selector)
Parameters
selectorISelector<T>The ISelector<T> used to select matching objects.
Returns
- IEnumerable<T>
An IEnumerable<T> of the matching objects.