示例#1
0
        /// <summary>
        /// This method is called when a closing operation has finished.  It invoke <see cref="ClosingDisc"/>.
        /// </summary>
        /// <param name="nEstimatedSeconds">The estimated number of seconds required to finish closing the disc.</param>
        protected internal void OnClosingDisc(int nEstimatedSeconds)
        {
            NotifyEstimatedTime tempDel = ClosingDisc;

            if (tempDel != null)
            {
                tempDel(nEstimatedSeconds);
            }
        }
示例#2
0
        /// <summary>
        /// This method is called with an esimated time of how long it will take to prepare the media for burning.  It invokes <see cref="PreparingBurn"/>.
        /// </summary>
        /// <param name="nEstimatedSeconds">The estimated number of seconds required to prepare the media for burning.</param>
        protected internal void OnPreparingBurn(int nEstimatedSeconds)
        {
            NotifyEstimatedTime tempDel = PreparingBurn;

            if (tempDel != null)
            {
                tempDel(nEstimatedSeconds);
            }
        }