8

BITS, the Windows background intelligent transfer service.

Looks like there are a few C# wrappers around that manage the interop to BITS, does anybody have any opinions on the best one?

Michael La Voie
  • 27,772
  • 14
  • 72
  • 92
Dan
  • 2,338
  • 17
  • 28
  • 1
    There's a new [learn.microsoft.com](https://learn.microsoft.com/en-us/windows/desktop/Bits/bits-dot-net) page that talks about using BITS and C#, plus a brand-new c#/WPF sample on [GitHub](https://github.com/microsoft/bits-manager). – PESMITH_MSFT Jan 08 '19 at 01:17

2 Answers2

6

I found problems with using the Managed_BITS codeproject article and I found an even better wrapper:

http://www.codeplex.com/sharpbits
http://nuget.org/packages/SharpBITS

Less code, a lot cleaner and unlike the codeproject, it did not hide away those parts of the BITS interface that I actually need to use.

Dan
  • 2,338
  • 17
  • 28