// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. /*============================================================ ** ** ** ** ** ** 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); } }