Show / Hide Table of Contents

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 Source

SignerFilter

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 Source

EnumerateSigners()

Enumerates all signers of the database

Declaration
IEnumerable<Signer> EnumerateSigners()
Returns
Type Description
IEnumerable<Signer>
| Improve this Doc View Source

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 signerFilter

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX