Inheritance: System.EventArgs
        /// <summary>
        /// Raises the <see cref="E:Completed"/> event.
        /// </summary>
        /// <param name="e">The <see cref="Elite.Silverlight3.Fractals.Silverlight.CompletedEventArgs"/> instance containing the event data.</param>
        private void OnCompleted(CompletedEventArgs e)
        {
            EventHandler <CompletedEventArgs> handler = Completed;

            if (handler != null)
            {
                handler(this, e);
            }
        }
        /// <summary>
        /// Raises the <see cref="E:Completed"/> event.
        /// </summary>
        /// <param name="e">The <see cref="Elite.Silverlight3.Fractals.Silverlight.CompletedEventArgs"/> instance containing the event data.</param>
        private void OnCompleted(CompletedEventArgs e)
        {
            EventHandler<CompletedEventArgs> handler = Completed;

            if (handler != null)
                handler(this, e);
        }