Exemplo n.º 1
0
 public static void CapacityOverflowed(object sender, CapacityOverflowedEventArgs e)
 {
     Debug.WriteLine($"A {e.GetType()} has overflowed and lost {e.LostAmount} content");
 }
Exemplo n.º 2
0
 protected string OnCapacityOverflowed(CapacityOverflowedEventArgs e)
 {
     CapacityOverflowed?.Invoke(this, e);
     return(EventReturnString);
 }