private void RaiseCompletedEvent(StartupFailureReason e)
        {
            var handler = Completed;

            if (handler != null)
            {
                handler(this, new AssociatableEventArgs <StartupFailureReason>(e));
            }
        }
Example #2
0
        private void RaiseBootFailedEvent(StartupFailureReason startupFailureReason)
        {
            var handler = BootFailed;

            if (handler != null)
            {
                handler(this, new AssociatableEventArgs <StartupFailureReason>(startupFailureReason));
            }
        }