SonarLint.VisualStudio.Progress.Controller.ProgressControllerHelper.IsFinalState C# (CSharp) 메소드

IsFinalState() 공개 정적인 메소드

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