Background Intelligent Transfer Service In C#
Asked Answered
R

2

6

Anyone successfully using this in c# or is there a better alternative to this? Also any good working project that I can look at and get a good feel? most projects i have come across is in C++ and was looking for a C# project

Reardon answered 29/12, 2008 at 13:32 Comment(0)
O
12

Yes, we're using it in a tool to let customers upload logs, dumps, etc. to our customer support department. You could use it directly via PInvoke/COMInterop, but I suggest to have a look at SharpBITS.NET, which wraps the BITS interface nicely.

Opinionative answered 29/12, 2008 at 14:1 Comment(3)
Hey Martin, I would appreciate if you could you put any comments on this question #1831311.Ogilvie
I know that this is a very old thread but was wondering if there are any alternatives to SharpBITS as it looks to be dead and was last updated in 2011Ariana
Try the Windows.Bits NuGet package. It looks to be the most alive.Zwick
W
2

I'm the PM for the BITS team at Microsoft -- and we have a new learn.microsoft.com page that talks about using BITS and C#, plus a brand-new C#/WPF sample on GitHub.

Wittenberg answered 8/1, 2019 at 1:20 Comment(1)
We have an implementation that uses ComImport as I believe the old documentation specified. Is there a benefit to using MIDL and TLBIMP? Currently we have an issue with BITS/WinHttp on Windows 7 defaulting to TLS 1.0, which only seems to be fixable by a registry change - one that I cannot force on my customer computers.Widner

© 2022 - 2024 — McMap. All rights reserved.