Redpoint.ProgressMonitor 2025.1233.885

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.1233.885
                    
NuGet\Install-Package Redpoint.ProgressMonitor -Version 2025.1233.885
                    
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.1233.885" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redpoint.ProgressMonitor" Version="2025.1233.885" />
                    
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.1233.885
                    
#r "nuget: Redpoint.ProgressMonitor, 2025.1233.885"
                    
#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.1233.885
                    
#: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.1233.885
                    
Install as a Cake Addin
#tool nuget:?package=Redpoint.ProgressMonitor&version=2025.1233.885
                    
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.1276.372 93 10/3/2025
2025.1253.415 187 9/10/2025
2025.1251.740 175 9/8/2025
2025.1249.408 122 9/6/2025
2025.1245.159 187 9/2/2025
2025.1241.1004 212 8/29/2025
2025.1241.337 230 8/29/2025
2025.1241.335 228 8/29/2025
2025.1239.82 230 8/27/2025
2025.1236.697 222 8/24/2025
2025.1235.897 117 8/23/2025
2025.1234.740 141 8/22/2025
2025.1234.625 148 8/22/2025
2025.1234.484 152 8/22/2025
2025.1234.426 159 8/22/2025
2025.1234.329 163 8/22/2025
2025.1234.304 166 8/22/2025
2025.1234.279 169 8/22/2025
2025.1234.210 173 8/22/2025
2025.1234.185 165 8/22/2025
2025.1234.108 178 8/22/2025
2025.1234.70 179 8/22/2025
2025.1233.957 185 8/21/2025
2025.1233.933 182 8/21/2025
2025.1233.915 177 8/21/2025
2025.1233.885 168 8/21/2025
2025.1233.764 187 8/21/2025
2025.1233.694 181 8/21/2025
2025.1233.677 184 8/21/2025
2025.1233.212 183 8/21/2025
2025.1233.74 176 8/21/2025
2025.1233.72 178 8/21/2025
2025.1233.28 177 8/21/2025
2025.1232.155 185 8/20/2025
2025.1232.154 179 8/20/2025
2025.1232.104 177 8/20/2025
2025.1232.102 180 8/20/2025
2025.1231.1026 185 8/19/2025
2025.1231.941 186 8/19/2025
2025.1231.499 176 8/19/2025
2025.1231.484 180 8/19/2025
2025.1231.297 181 8/19/2025
2025.1230.859 181 8/18/2025
2025.1228.220 116 8/16/2025
2025.1227.934 143 8/15/2025
2025.1227.904 140 8/15/2025
2025.1227.852 137 8/15/2025
2025.1227.816 143 8/15/2025
2025.1227.77 180 8/15/2025
2025.1226.857 187 8/14/2025
2025.1226.472 191 8/14/2025
2025.1226.163 191 8/14/2025
2025.1222.583 190 8/10/2025
2025.1222.562 188 8/10/2025
2025.1222.437 188 8/10/2025
2025.1222.425 173 8/10/2025
2025.1220.271 251 8/8/2025
2025.1220.225 248 8/8/2025
2025.1220.80 257 8/8/2025
2025.1219.568 262 8/7/2025
2025.1219.546 265 8/7/2025
2025.1219.514 261 8/7/2025
2025.1219.513 257 8/7/2025
2025.1219.511 255 8/7/2025
2025.1219.421 263 8/7/2025
2025.1219.377 259 8/7/2025
2025.1219.362 264 8/7/2025
2025.1219.361 260 8/7/2025
2025.1218.1281 264 8/6/2025
2025.1218.1266 259 8/6/2025
2025.1218.1264 263 8/6/2025
2025.1218.1255 264 8/6/2025
2025.1218.1223 265 8/6/2025
2025.1218.1180 260 8/6/2025
2025.1218.1166 256 8/6/2025
2025.1218.1154 260 8/6/2025
2025.1218.1088 266 8/6/2025
2025.1218.595 261 8/6/2025
2025.1218.554 263 8/6/2025
2025.1218.544 261 8/6/2025
2025.1218.523 260 8/6/2025
2025.1218.499 267 8/6/2025
2025.1218.427 267 8/6/2025
2025.1218.415 261 8/6/2025
2025.1218.187 265 8/6/2025
2025.1218.174 262 8/6/2025
2025.1218.148 265 8/6/2025
2025.1218.123 260 8/6/2025
2025.1217.886 266 8/5/2025
2025.1217.560 264 8/5/2025
2025.1217.516 267 8/5/2025
2025.1217.512 270 8/5/2025
2025.1217.503 271 8/5/2025
2025.1216.1103 228 8/4/2025
2025.1216.1025 224 8/4/2025
2025.1216.978 205 8/4/2025
2025.1216.897 202 8/4/2025
2025.1216.893 201 8/4/2025
2025.1216.884 205 8/4/2025
2025.1216.873 200 8/4/2025
2025.1216.824 203 8/4/2025
2025.1216.767 203 8/4/2025
2025.1216.745 208 8/4/2025
2025.1216.411 182 8/4/2025
2025.1216.396 181 8/4/2025
2025.1216.386 184 8/4/2025
2025.1216.357 179 8/4/2025
2025.1216.347 178 8/4/2025
2025.1216.334 183 8/4/2025
2025.1216.319 175 8/4/2025
2025.1215.930 146 8/3/2025
2025.1215.928 148 8/3/2025
2025.1215.911 152 8/3/2025
2025.1215.892 147 8/3/2025
2025.1215.842 148 8/3/2025
2025.1209.1064 146 7/28/2025
2025.1209.1061 139 7/28/2025
2025.1209.1047 144 7/28/2025
2025.1209.1038 149 7/28/2025
2025.1209.1034 145 7/28/2025
2025.1209.948 150 7/28/2025
2025.1209.881 155 7/28/2025
2025.1209.773 163 7/28/2025
2025.1209.765 153 7/28/2025
2025.1209.758 154 7/28/2025
2025.1209.727 158 7/28/2025
2025.1209.658 158 7/28/2025
2025.1209.300 153 7/28/2025
2025.1209.284 156 7/28/2025
2025.1209.264 154 7/28/2025
2025.1209.227 154 7/28/2025
2025.1209.198 150 7/28/2025
2025.1209.179 162 7/28/2025
2025.1208.826 173 7/27/2025
2025.1208.627 133 7/27/2025
2025.1208.617 133 7/27/2025
2025.1208.570 130 7/27/2025
2025.1208.568 141 7/27/2025
2025.1208.566 139 7/27/2025
2025.1206.491 463 7/25/2025
2025.1206.247 503 7/25/2025
2025.1205.230 512 7/24/2025
2025.1203.826 578 7/22/2025
2025.1202.906 529 7/21/2025
2025.1202.904 521 7/21/2025
2025.1202.283 451 7/21/2025
2025.1201.470 275 7/20/2025
2025.1199.287 170 7/18/2025
2025.1198.1048 182 7/17/2025
2025.1198.682 179 7/17/2025
2025.1198.638 182 7/17/2025
2025.1198.574 183 7/17/2025
2025.1198.187 190 7/17/2025
2025.1191.922 189 7/10/2025
2025.1191.235 192 7/10/2025
2025.1190.175 190 7/9/2025
2025.1189.851 193 7/8/2025
2025.1189.841 191 7/8/2025
2025.1187.587 192 7/6/2025
2025.1183.853 197 7/2/2025
2025.1181.644 183 6/30/2025
2025.1175.340 201 6/24/2025
2025.1174.62 190 6/23/2025
2025.1171.352 188 6/20/2025
2025.1169.413 189 6/18/2025
2025.1166.1191 187 6/15/2025
2025.1166.1178 189 6/15/2025
2025.1166.1177 189 6/15/2025
2025.1159.445 168 6/8/2025
2025.1159.364 165 6/8/2025
2025.1159.324 168 6/8/2025
2025.1155.438 192 6/4/2025
2025.1141.1424 197 5/21/2025
2025.1140.383 196 5/20/2025
2025.1140.377 195 5/20/2025
2025.1139.983 197 5/19/2025
2025.1139.952 193 5/19/2025
2025.1139.941 198 5/19/2025
2025.1139.855 204 5/19/2025
2025.1139.850 192 5/19/2025
2025.1139.837 190 5/19/2025
2025.1139.811 188 5/19/2025
2025.1139.806 194 5/19/2025
2025.1139.796 193 5/19/2025
2025.1139.729 194 5/19/2025
2025.1139.719 194 5/19/2025
2025.1139.706 194 5/19/2025
2025.1139.694 194 5/19/2025
2025.1139.679 195 5/19/2025
2025.1139.662 188 5/19/2025
2025.1139.638 171 5/19/2025
2025.1139.628 172 5/19/2025
2025.1139.626 179 5/19/2025
2025.1139.619 176 5/19/2025
2025.1139.605 174 5/19/2025
2025.1139.600 177 5/19/2025
2025.1139.583 186 5/19/2025
2025.1139.573 175 5/19/2025
2025.1139.564 175 5/19/2025
2025.1139.552 177 5/19/2025
2025.1139.543 170 5/19/2025
2025.1138.909 180 5/18/2025
2025.1136.150 251 5/16/2025
2025.1135.267 250 5/15/2025
2025.1135.143 258 5/15/2025
2025.1133.453 260 5/13/2025
2025.1133.351 260 5/13/2025
2025.1133.349 269 5/13/2025
2025.1133.347 261 5/13/2025
2025.1130.236 111 5/10/2025
2025.1129.831 137 5/9/2025
2025.1129.346 1,085 5/9/2025
2023.1176.407 240 6/25/2023
2023.1176.396 202 6/25/2023
2023.1176.363 213 6/25/2023
2023.1176.360 249 6/25/2023
2023.1175.638 209 6/24/2023
2023.1170.907 204 6/19/2023
2023.1170.900 206 6/19/2023
2023.1167.562 199 6/16/2023
2023.1167.556 214 6/16/2023
2023.1167.496 226 6/16/2023
2023.1166.1008 229 6/15/2023
2023.1166.938 201 6/15/2023
2023.1166.713 221 6/15/2023
2023.1166.699 210 6/15/2023
2023.1165.1065 219 6/14/2023
2023.1165.888 215 6/14/2023
2023.1165.878 217 6/14/2023
2023.1165.861 206 6/14/2023
2023.1165.828 216 6/14/2023
2023.1165.686 228 6/14/2023
2023.1165.653 210 6/14/2023
2023.377.1003 291 5/31/2023
2023.377.909 233 5/31/2023
2023.377.558 230 5/31/2023
2023.365.1417 278 5/30/2023
2023.365.1350 218 5/30/2023
2023.365.1327 214 5/30/2023
2023.365.1306 235 5/30/2023
2023.365.1198 242 5/30/2023
2023.365.1046 220 5/30/2023
2023.365.710 219 5/30/2023
2023.365.703 231 5/30/2023
2023.365.336 222 5/30/2023
2023.174.636 218 6/14/2023
2023.174.616 201 6/14/2023
2023.174.442 217 6/14/2023
2023.162.1243 210 6/13/2023
2023.162.1225 218 6/13/2023
2023.162.1023 204 6/13/2023
2023.162.948 209 6/13/2023
2023.162.865 214 6/13/2023
2023.162.770 238 6/13/2023
2023.162.734 227 6/13/2023
2023.162.701 220 6/13/2023
2023.162.470 229 6/13/2023
2023.162.418 213 6/13/2023
2023.150.1142 212 6/12/2023
2023.150.1121 216 6/12/2023
2023.150.1095 217 6/12/2023
2023.150.1081 203 6/12/2023
2023.150.1066 213 6/12/2023
2023.150.999 205 6/12/2023
2023.150.916 231 6/12/2023
2023.150.865 215 6/12/2023
2023.150.831 215 6/12/2023
2023.150.774 214 6/12/2023
2023.150.613 213 6/12/2023
2023.150.558 224 6/12/2023
2023.150.456 236 6/12/2023
2023.150.450 238 6/12/2023
2023.150.220 236 6/12/2023
2023.150.179 241 6/12/2023
2023.150.167 242 6/12/2023
2023.138.864 226 6/11/2023
2023.138.837 221 6/11/2023
2023.138.363 231 6/11/2023
2023.138.224 261 6/11/2023
2023.138.213 205 6/11/2023
2023.126.1167 234 6/11/2023
2023.126.1148 229 6/10/2023
2023.126.838 238 6/10/2023
2023.126.794 233 6/10/2023
2023.126.745 233 6/10/2023
2023.126.714 245 6/10/2023
2023.126.662 242 6/10/2023
2023.114.544 218 6/9/2023
2023.114.351 228 6/9/2023
2023.90.1030 232 6/7/2023
2023.90.1009 214 6/7/2023
2023.54.1152 215 6/4/2023
2023.54.419 237 6/4/2023
2023.54.198 217 6/4/2023
2023.54.60 200 6/4/2023
2023.54.48 232 6/4/2023
2023.42.745 218 6/3/2023
2023.30.1191 218 6/2/2023
2023.30.1172 230 6/2/2023
2023.30.1163 225 6/2/2023
2023.30.1147 228 6/2/2023
2023.30.1136 245 6/2/2023
2023.30.765 239 6/2/2023
2023.30.761 226 6/2/2023
2023.30.747 240 6/2/2023
2023.30.734 227 6/2/2023