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