Redpoint.ProgressMonitor 2025.1209.264

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Redpoint.ProgressMonitor --version 2025.1209.264
                    
NuGet\Install-Package Redpoint.ProgressMonitor -Version 2025.1209.264
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Redpoint.ProgressMonitor" Version="2025.1209.264" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redpoint.ProgressMonitor" Version="2025.1209.264" />
                    
Directory.Packages.props
<PackageReference Include="Redpoint.ProgressMonitor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Redpoint.ProgressMonitor --version 2025.1209.264
                    
#r "nuget: Redpoint.ProgressMonitor, 2025.1209.264"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Redpoint.ProgressMonitor@2025.1209.264
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Redpoint.ProgressMonitor&version=2025.1209.264
                    
Install as a Cake Addin
#tool nuget:?package=Redpoint.ProgressMonitor&version=2025.1209.264
                    
Install as a Cake Tool

Redpoint.ProgressMonitor

This library provides APIs for monitoring and reporting the progress of arbitrary operations in console applications.

Read on for the following examples:

Example for a generic stream

You can monitor an operation that uses a stream like so:

// Inject these services.
IProgressFactory _progressFactory;
IMonitorFactory _monitorFactory;

using (var stream = new FileStream(...))
{
    // Start monitoring.
    var cts = new CancellationTokenSource();
    var progress = _progressFactory.CreateProgressForStream(stream);
    var monitorTask = Task.Run(async () =>
    {
        var monitor = _monitorFactory.CreateByteBasedMonitor();
        await monitor.MonitorAsync(
            progress,
            SystemConsole.ConsoleInformation,
            SystemConsole.WriteProgressToConsole,
            cts.Token);
    });

    // e.g. hash the stream.
    byte[] hashBytes;
    using (var hasher = SHA256.Create())
    {
        hashBytes = await hasher.ComputeHashAsync(stream);
    }

    // Stop monitoring.
    await SystemConsole.CancelAndWaitForConsoleMonitoringTaskAsync(monitorTask, cts);
}

Example for a HTTP download

If you're reporting progress on a HTTP stream, there's a few extra things to keep in mind:

  • You need to pass HttpCompletionOption.ResponseHeadersRead as the completion option, or HttpClient will buffer the entire response by default.
  • You need to wrap the stream you read from in PositionAwareStream, which is a class provided by this library. Since the underlying HTTP stream does not support Position or Length, this wrapping stream tracks the position as the stream is read from and allows the length to be passed in as a constructor parameter (which you should set based on the Content-Length header).

Below is a concise example of how to show the progress of downloading a file:

using (var client = new HttpClient())
{
    using (var target = new FileStream(targetPath, FileMode.Create, FileAccess.Write, FileShare.None))
    {
        var response = await client.GetAsync(downloadUrl, HttpCompletionOption.ResponseHeadersRead);
        using (var stream = new PositionAwareStream(
            await response.Content.ReadAsStreamAsync(),
            response.Content.Headers.ContentLength!.Value))
        {
            var cts = new CancellationTokenSource();
            var progress = _progressFactory.CreateProgressForStream(stream);
            var monitorTask = Task.Run(async () =>
            {
                var monitor = _monitorFactory.CreateByteBasedMonitor();
                await monitor.MonitorAsync(
                    progress,
                    SystemConsole.ConsoleInformation,
                    SystemConsole.WriteProgressToConsole,
                    cts.Token);
            });

            await stream.CopyToAsync(target);
            
            await SystemConsole.CancelAndWaitForConsoleMonitoringTaskAsync(monitorTask, cts);
        }
    }
}

The SystemConsole static class

The SystemConsole type provides common values for monitoring parameters, such as the current console information and rendering progress information to the console. You should replace the static values in the examples above with your own callbacks and values if you're not rendering progress to the console.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Redpoint.ProgressMonitor:

Package Downloads
Redpoint.PackageManagement

Provides APIs for installing, upgrading and uninstalling packages with WinGet and Homebrew.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.1209.1064 14 7/28/2025
2025.1209.1061 9 7/28/2025
2025.1209.1047 8 7/28/2025
2025.1209.1038 10 7/28/2025
2025.1209.1034 9 7/28/2025
2025.1209.948 10 7/28/2025
2025.1209.881 13 7/28/2025
2025.1209.773 18 7/28/2025
2025.1209.765 9 7/28/2025
2025.1209.758 13 7/28/2025
2025.1209.727 13 7/28/2025
2025.1209.658 10 7/28/2025
2025.1209.300 9 7/28/2025
2025.1209.284 12 7/28/2025
2025.1209.264 11 7/28/2025
2025.1209.227 9 7/28/2025
2025.1209.198 11 7/28/2025
2025.1209.179 12 7/28/2025
2025.1208.826 20 7/27/2025
2025.1208.627 23 7/27/2025
2025.1208.617 19 7/27/2025
2025.1208.570 20 7/27/2025
2025.1208.568 20 7/27/2025
2025.1208.566 20 7/27/2025
2025.1206.491 387 7/25/2025
2025.1206.247 415 7/25/2025
2025.1205.230 438 7/24/2025
2025.1203.826 486 7/22/2025
2025.1202.906 433 7/21/2025
2025.1202.904 430 7/21/2025
2025.1202.283 356 7/21/2025
2025.1201.470 179 7/20/2025
2025.1199.287 92 7/18/2025
2025.1198.1048 107 7/17/2025
2025.1198.682 106 7/17/2025
2025.1198.638 107 7/17/2025
2025.1198.574 109 7/17/2025
2025.1198.187 112 7/17/2025
2025.1191.922 138 7/10/2025
2025.1191.235 141 7/10/2025
2025.1190.175 140 7/9/2025
2025.1189.851 140 7/8/2025
2025.1189.841 144 7/8/2025
2025.1187.587 141 7/6/2025
2025.1183.853 136 7/2/2025
2025.1181.644 130 6/30/2025
2025.1175.340 141 6/24/2025
2025.1174.62 138 6/23/2025
2025.1171.352 129 6/20/2025
2025.1169.413 141 6/18/2025
2025.1166.1191 138 6/15/2025
2025.1166.1178 141 6/15/2025
2025.1166.1177 142 6/15/2025
2025.1159.445 124 6/8/2025
2025.1159.364 120 6/8/2025
2025.1159.324 122 6/8/2025
2025.1155.438 146 6/4/2025
2025.1141.1424 150 5/21/2025
2025.1140.383 151 5/20/2025
2025.1140.377 151 5/20/2025
2025.1139.983 151 5/19/2025
2025.1139.952 147 5/19/2025
2025.1139.941 151 5/19/2025
2025.1139.855 152 5/19/2025
2025.1139.850 145 5/19/2025
2025.1139.837 145 5/19/2025
2025.1139.811 147 5/19/2025
2025.1139.806 148 5/19/2025
2025.1139.796 149 5/19/2025
2025.1139.729 148 5/19/2025
2025.1139.719 148 5/19/2025
2025.1139.706 149 5/19/2025
2025.1139.694 145 5/19/2025
2025.1139.679 149 5/19/2025
2025.1139.662 146 5/19/2025
2025.1139.638 141 5/19/2025
2025.1139.628 142 5/19/2025
2025.1139.626 149 5/19/2025
2025.1139.619 146 5/19/2025
2025.1139.605 144 5/19/2025
2025.1139.600 146 5/19/2025
2025.1139.583 146 5/19/2025
2025.1139.573 149 5/19/2025
2025.1139.564 144 5/19/2025
2025.1139.552 146 5/19/2025
2025.1139.543 144 5/19/2025
2025.1138.909 147 5/18/2025
2025.1136.150 217 5/16/2025
2025.1135.267 221 5/15/2025
2025.1135.143 227 5/15/2025
2025.1133.453 230 5/13/2025
2025.1133.351 234 5/13/2025
2025.1133.349 240 5/13/2025
2025.1133.347 231 5/13/2025
2025.1130.236 81 5/10/2025
2025.1129.831 111 5/9/2025
2025.1129.346 152 5/9/2025
2023.1176.407 211 6/25/2023
2023.1176.396 173 6/25/2023
2023.1176.363 183 6/25/2023
2023.1176.360 219 6/25/2023
2023.1175.638 178 6/24/2023
2023.1170.907 174 6/19/2023
2023.1170.900 176 6/19/2023
2023.1167.562 177 6/16/2023
2023.1167.556 181 6/16/2023
2023.1167.496 194 6/16/2023
2023.1166.1008 197 6/15/2023
2023.1166.938 170 6/15/2023
2023.1166.713 188 6/15/2023
2023.1166.699 178 6/15/2023
2023.1165.1065 189 6/14/2023
2023.1165.888 185 6/14/2023
2023.1165.878 185 6/14/2023
2023.1165.861 175 6/14/2023
2023.1165.828 186 6/14/2023
2023.1165.686 199 6/14/2023
2023.1165.653 180 6/14/2023
2023.377.1003 271 5/31/2023
2023.377.909 202 5/31/2023
2023.377.558 199 5/31/2023
2023.365.1417 248 5/30/2023
2023.365.1350 187 5/30/2023
2023.365.1327 183 5/30/2023
2023.365.1306 201 5/30/2023
2023.365.1198 212 5/30/2023
2023.365.1046 190 5/30/2023
2023.365.710 189 5/30/2023
2023.365.703 201 5/30/2023
2023.365.336 190 5/30/2023
2023.174.636 187 6/14/2023
2023.174.616 170 6/14/2023
2023.174.442 185 6/14/2023
2023.162.1243 181 6/13/2023
2023.162.1225 188 6/13/2023
2023.162.1023 173 6/13/2023
2023.162.948 179 6/13/2023
2023.162.865 184 6/13/2023
2023.162.770 207 6/13/2023
2023.162.734 198 6/13/2023
2023.162.701 189 6/13/2023
2023.162.470 199 6/13/2023
2023.162.418 182 6/13/2023
2023.150.1142 183 6/12/2023
2023.150.1121 186 6/12/2023
2023.150.1095 186 6/12/2023
2023.150.1081 173 6/12/2023
2023.150.1066 182 6/12/2023
2023.150.999 173 6/12/2023
2023.150.916 200 6/12/2023
2023.150.865 185 6/12/2023
2023.150.831 185 6/12/2023
2023.150.774 182 6/12/2023
2023.150.613 180 6/12/2023
2023.150.558 195 6/12/2023
2023.150.456 206 6/12/2023
2023.150.450 207 6/12/2023
2023.150.220 205 6/12/2023
2023.150.179 210 6/12/2023
2023.150.167 212 6/12/2023
2023.138.864 196 6/11/2023
2023.138.837 191 6/11/2023
2023.138.363 201 6/11/2023
2023.138.224 230 6/11/2023
2023.138.213 175 6/11/2023
2023.126.1167 203 6/11/2023
2023.126.1148 197 6/10/2023
2023.126.838 209 6/10/2023
2023.126.794 202 6/10/2023
2023.126.745 203 6/10/2023
2023.126.714 215 6/10/2023
2023.126.662 211 6/10/2023
2023.114.544 187 6/9/2023
2023.114.351 196 6/9/2023
2023.90.1030 201 6/7/2023
2023.90.1009 184 6/7/2023
2023.54.1152 186 6/4/2023
2023.54.419 207 6/4/2023
2023.54.198 187 6/4/2023
2023.54.60 168 6/4/2023
2023.54.48 201 6/4/2023
2023.42.745 187 6/3/2023
2023.30.1191 187 6/2/2023
2023.30.1172 201 6/2/2023
2023.30.1163 191 6/2/2023
2023.30.1147 197 6/2/2023
2023.30.1136 214 6/2/2023
2023.30.765 209 6/2/2023
2023.30.761 196 6/2/2023
2023.30.747 209 6/2/2023
2023.30.734 197 6/2/2023