SonarLint.VisualStudio.Progress.Controller.ProgressControllerHelper.IsFinalState C# (CSharp) Method

IsFinalState() public static method

Returns whether the state is considered to be final
public static IsFinalState ( StepExecutionState state ) : bool
state StepExecutionState The state for which to check
return bool
        public static bool IsFinalState(StepExecutionState state)
        {
            return state == StepExecutionState.Cancelled || state == StepExecutionState.Failed || state == StepExecutionState.Succeeded;
        }
        #endregion