示例#1
0
        Result IBootstrapperApplication.OnCacheBegin()
        {
            CacheBeginEventArgs args = new CacheBeginEventArgs();
            this.OnCacheBegin(args);

            return args.Result;
        }
示例#2
0
 /// <summary>
 /// Called when the engine begins to cache the installation sources.
 /// </summary>
 /// <param name="args"></param>
 protected virtual void OnCacheBegin(CacheBeginEventArgs args)
 {
     EventHandler<CacheBeginEventArgs> handler = this.CacheBegin;
     if (null != handler)
     {
         handler(this, args);
     }
 }
示例#3
0
 /// Fired when the engine has begun caching the installation sources.
 static void OnCacheBegin(object sender, CacheBeginEventArgs e)
 {
     Logger.Instance.Trace("");
 }