Interface ISelector<T>
- Namespace
- Org.BouncyCastle.Utilities.Collections
- Assembly
- BouncyCastle.Cryptography.dll
Interface for matching objects in an IStore<T>.
public interface ISelector<in T> : ICloneable
Type Parameters
TThe contravariant type of selectable objects.
- Inherited Members
Methods
Match(T)
Match the passed in object, returning true if it would be selected by this selector, false otherwise.
bool Match(T candidate)
Parameters
candidateTThe object to be matched.
Returns
- bool
if the objects is matched by this selector, false otherwise.true