Beispiel #1
0
 public SettingsTask OnVerifyMismatch(VerifyMismatch verifyMismatch)
 {
     CurrentSettings.OnVerifyMismatch(verifyMismatch);
     return(this);
 }
Beispiel #2
0
 public void OnVerifyMismatch(VerifyMismatch verifyMismatch)
 {
     Guard.AgainstNull(verifyMismatch, nameof(verifyMismatch));
     handleOnVerifyMismatch = verifyMismatch;
 }
Beispiel #3
0
 public SettingsTask OnVerifyMismatch(VerifyMismatch verifyMismatch)
 {
     throw new NotImplementedException();
 }
Beispiel #4
0
 public void OnVerifyMismatch(VerifyMismatch func)
 {
     Guard.AgainstNull(func, nameof(func));
     handleOnVerifyMismatch = func;
 }