Пример #1
0
        /// <summary>
        /// Disable processing on a component
        /// </summary>
        public void Disable()
        {
            var status = MMALNativeMethods.ComponentDisable(this.m_handle);

            if (status != MMAL_STATUS_T.MMAL_SUCCESS)
            {
                throw new MMALException(status);
            }
        }