using System; using System.Collections.Generic; using System.Text; namespace Nuclex.Support.Tracking { /// Event arguments for a progress update notification public class ProgressUpdateEventArgs : EventArgs { /// Initializes the progress update informations /// Achieved progress ranging from 0.0 to 1.0 public ProgressUpdateEventArgs(float progress) { this.progress = progress; } /// Currently achieved progress public float Progress { get { return this.progress; } } /// Achieved progress private float progress; } } // namespace Nuclex.Support.Tracking