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