Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the best freely available C# wrapper for BITS? [closed]

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?

like image 692
Dan Avatar asked Sep 19 '08 18:09

Dan


2 Answers

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.

like image 67
Dan Avatar answered Sep 24 '22 00:09

Dan


Check out the following:

  1. http://www.codeproject.com/KB/cs/Managed_BITS.aspx

  2. http://www.simple-talk.com/dotnet/.net-tools/using-bits-to-upload-files-with-.net/

like image 20
NotMe Avatar answered Sep 23 '22 00:09

NotMe