Beispiel #1
0
 internal void OnInitializing(EntityAppInitStep step)
 {
     if (Initializing != null)
     {
         Initializing(_app, new AppInitEventArgs(_app, step));
     }
 }
 public AppInitEventArgs(EntityApp app, EntityAppInitStep step)
 {
     App  = app;
     Step = step;
 }
 internal void OnInitializing(EntityAppInitStep step)
 {
     Initializing?.Invoke(_app, new AppInitEventArgs(_app, step));
 }
Beispiel #4
0
 public AppInitEventArgs(EntityApp app, EntityAppInitStep step)
 {
     App  = app;
     Log  = app.SystemLog;
     Step = step;
 }
Beispiel #5
0
 public AppInitEventArgs(EntityApp app, MemoryLog log, EntityAppInitStep step)
 {
     App = app;
       Log = log;
       Step = step;
 }
Beispiel #6
0
 internal void OnInitializing(EntityAppInitStep step)
 {
     if (Initializing != null)
     Initializing(_app, new AppInitEventArgs(_app, _app.ActivationLog, step));
 }