public override void ConfigurationDone(Response response, dynamic args) { if (_process == null) { SessionLog.WriteLine("Config Done. Process is not started"); SendResponse(response); return; } SessionLog.WriteLine("Config Done. Process is started"); _process.BeginExecution(-1); _startupPerformed = true; SendResponse(response); }