Beispiel #1
0
 /// <summary>
 /// Called when the engine has begun removing the registration for the location and visibility of the bundle.
 /// </summary>
 /// <param name="args">Additional arguments for this event.</param>
 protected virtual void OnUnregisterBegin(UnregisterBeginEventArgs args)
 {
     EventHandler<UnregisterBeginEventArgs> handler = this.UnregisterBegin;
     if (null != handler)
     {
         handler(this, args);
     }
 }
Beispiel #2
0
 /// Fired when the engine has begun removing the registration for the location and visibility of the bundle.
 static void OnUnregisterBegin(object sender, UnregisterBeginEventArgs e)
 {
     Logger.Instance.Trace("");
 }