CK.Core.JSONVisitor.VisitArrayCell C# (CSharp) Method

VisitArrayCell() public method

public VisitArrayCell ( int cellIndex ) : bool
cellIndex int
return bool
        public virtual bool VisitArrayCell( int cellIndex )
        {
            try
            {
                _path.Add( new Parent( null, cellIndex ) );
                return Visit();
            }
            finally
            {
                _path.RemoveAt( _path.Count - 1 );
            }
        }