// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: IProgress ** ** stoub ** ** ** Purpose: Interface for providing progress updates. ** ** ===========================================================*/ namespace System { /// Defines a provider for progress updates. /// The type of progress update value. public interface IProgress { /// Reports a progress update. /// The value of the updated progress. void Report(T value); } }