Exemple #1
0
 public void StickIn(Snack.Part.Service part)
 {
     try
     {
         part.Continue();
     }
     catch { Messages.Add(nameof(Silent)); }
     finally { }
 }
Exemple #2
0
 public void StickIn(Snack.Part.Service part)
 {
     try
     {
         part.Continue();
     }
     catch (CryptographicException e)
     {
         Messages.Add(e.Message);
         throw;
     }
 }
 public void StickIn(Snack.Part.Service part)
 {
     try
     {
         part.Continue();
     }
     catch (AuthenticationException e)
     {
         Messages.Add(e.Message);
         throw;
     }
 }
Exemple #4
0
 public void StickIn(Snack.Part.Service model)
 {
     Messages.Add(nameof(Lettuce));
     model.Continue();
     Messages.Add(nameof(Lettuce));
 }
Exemple #5
0
 public void StickIn(Snack.Part.Service part)
 {
     part.Continue();
     throw new CryptographicException();
 }
Exemple #6
0
 public void StickIn(Snack.Part.Service part)
 {
     Messages.Add(nameof(Onion));
     part.Continue();
 }
Exemple #7
0
 public void StickIn(Snack.Part.Service part)
 {
     Messages.Add(nameof(SesameBread) + 0);
     part.Continue();
     Messages.Add(nameof(SesameBread) + 1);
 }
 public void StickIn(Snack.Part.Service part)
 {
     part.Continue();
 }
Exemple #9
0
 public void StickIn(Snack.Part.Service part)
 {
     throw new AuthenticationException("CustomMessageAuthenticateException");
 }
 public void StickIn(Snack.Part.Service part)
 {
 }
Exemple #11
0
 public void StickIn(Snack.Part.Service part)
 {
     Messages.Add(nameof(SpecialSauce));
     part.Continue();
 }