Beispiel #1
0
 public override void OnEntry(MethodExecutionArgs args)
 {
     DiagManager.LogInfo($"Welcome to Horizon v.{App.CurrentVersion.ToString()}.");
     DiagManager.LogInfo("Opening splash and program selection window...");
 }
Beispiel #2
0
        public override void OnExit(MethodExecutionArgs args)
        {
            JFile returnValue = args.ReturnValue as JFile;

            DiagManager.LogInfo($"Loaded File {returnValue.FileName}.");
        }
Beispiel #3
0
 public override void OnExit(MethodExecutionArgs args) => DiagManager.LogInfo(this.ExitMessage);
Beispiel #4
0
        public override void OnEntry(MethodExecutionArgs args)
        {
            string path = Path.Combine(args.Arguments[0].ToString(), args.Arguments[1].ToString());

            DiagManager.LogInfo($"Attempting to load file {path}...");
        }