/**
         * <summary>
         *   Returns the current length of the blinking sequence.
         * <para>
         * </para>
         * <para>
         * </para>
         * </summary>
         * <returns>
         *   an integer corresponding to the current length of the blinking sequence
         * </returns>
         * <para>
         *   On failure, throws an exception or returns <c>YColorLed.BLINKSEQSIZE_INVALID</c>.
         * </para>
         */
        public int get_blinkSeqSize()
        {
            int res;

            if (_func == null)
            {
                throw new YoctoApiProxyException("No ColorLed connected");
            }
            res = _func.get_blinkSeqSize();
            if (res == YAPI.INVALID_INT)
            {
                res = _BlinkSeqSize_INVALID;
            }
            return(res);
        }