Beispiel #1
0
        /** ****************************************************************************************
         * Removes an new entry in field #Data and recursively demands the same from
         * its sub-domains.
         * @param loggerNo  The number of the \e Logger to be removed
         ******************************************************************************************/
        public void    RemoveLogger(int loggerNo)
        {
            // let our root do this
            if (Parent != null)
            {
                Parent.RemoveLogger(loggerNo);
                return;
            }

            // now this and all childs
            removeLoggerRecursive(loggerNo);
        }