HTTP Transfers
Background Uploads & Downloads with metrics
| Area | Value |
|---|---|
| NuGet | |
| Service | Shiny.Net.Http.IHttpTransferManager |
| Auto-Register | NO |
| Delegate | Shiny.Net.Http.IHttpTransferDelegate |
| Static Class | ShinyHttpTransfers |
Features
- Background Uploads
- Background Downloads
- Metrics - Time Remaining, Bytes Per Second, Percent Complete, Estimated Completion Time
Startup File
using Microsoft.Extensions.DependencyInjection;
using Shiny;
namespace YourNamespace
{
public class YourShinyStartup : ShinyStartup
{
public override void ConfigureServices(IServiceCollection services, IPlatform platform)
{
services.UseHttpTransfers<YourHttpTransferDelegate>();
}
}
}