/**
         * <summary>
         *   Return the blinking sequence signature.
         * <para>
         *   Since blinking
         *   sequences cannot be read from the device, this can be used
         *   to detect if a specific blinking sequence is already
         *   programmed.
         * </para>
         * <para>
         * </para>
         * </summary>
         * <returns>
         *   an integer
         * </returns>
         * <para>
         *   On failure, throws an exception or returns <c>YColorLed.BLINKSEQSIGNATURE_INVALID</c>.
         * </para>
         */
        public int get_blinkSeqSignature()
        {
            int res;

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