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