Table of Contents

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

T

The 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

candidate T

The object to be matched.

Returns

bool
true
if the objects is matched by this selector, false otherwise.