Interface IDataSetLoader
Exposes a function to enable loading collections of Signers. Base abstract class: DataSetLoader.
Namespace: SigStat.Common.Loaders
Assembly: SigStat.Common.dll
Syntax
public interface IDataSetLoader
Properties
| Improve this Doc View SourceSignerFilter
Ignores any signers during the loading, that do not match the predicate
Declaration
Predicate<Signer> SignerFilter { get; set; }
Property Value
Type | Description |
---|---|
Predicate<Signer> |
Methods
| Improve this Doc View SourceEnumerateSigners()
Enumerates all signers of the database
Declaration
IEnumerable<Signer> EnumerateSigners()
Returns
Type | Description |
---|---|
IEnumerable<Signer> |
EnumerateSigners(Predicate<Signer>)
Enumerates all Signers that match the signerFilter
.
Declaration
IEnumerable<Signer> EnumerateSigners(Predicate<Signer> signerFilter)
Parameters
Type | Name | Description |
---|---|---|
Predicate<Signer> | signerFilter | Filter to specify which Signers to load. Example: (p=>p=="01") |
Returns
Type | Description |
---|---|
IEnumerable<Signer> | Collection of Signers that match the |