Aegis.Calculate.IntervalTimer.SetCallCount C# (CSharp) Method

SetCallCount() public method

호출 횟수를 지정합니다.
public SetCallCount ( int count ) : IntervalTimer
count int -1을 설정하면 무한호출이 되며, 1 이상의 값은 횟수를 지정합니다. 0은 허용되지 않습니다.
return IntervalTimer
        public IntervalTimer SetCallCount(int count)
        {
            if (count == 0)
                throw new AegisException(AegisResult.InvalidArgument);

            _remainCount = count;
            return this;
        }