Inheritance: System.EventArgs
Exemplo n.º 1
0
 protected virtual void OnBluePrintCreated(BluePrintEventArgs e)
 {
     if (BluePrintCreated != null)
     {
         BluePrintCreated(this, e);
     }
 }
Exemplo n.º 2
0
 private static void plant_BluePrintCreated(object sender, BluePrintEventArgs e)
 {
     Assert.IsNotNull(e.ObjectConstructed);
 }