Пример #1
0
 /// <summary>
 /// Called when the engine has begun registering the location and visibility of the bundle.
 /// </summary>
 /// <param name="args">Additional arguments for this event.</param>
 protected virtual void OnRegisterBegin(RegisterBeginEventArgs args)
 {
     EventHandler<RegisterBeginEventArgs> handler = this.RegisterBegin;
     if (null != handler)
     {
         handler(this, args);
     }
 }
Пример #2
0
        Result IBootstrapperApplication.OnRegisterBegin()
        {
            RegisterBeginEventArgs args = new RegisterBeginEventArgs();
            this.OnRegisterBegin(args);

            return args.Result;
        }
Пример #3
0
 /// Fired when the engine has begun registering the location and visibility of the bundle.
 static void OnRegisterBegin(object sender, RegisterBeginEventArgs e)
 {
     Logger.Instance.Trace("");
 }