Exemple #1
0
 public FoundMatchEventArgs(SequenceSearchResult result)
 {
     ContractAssertions.IsNotNull(result, nameof(result));
     Result = result;
 }
Exemple #2
0
 private void OnFoundMatch(SequenceSearchResult result)
 {
     FoundMatch?.Invoke(this, new FoundMatchEventArgs(result));
 }