NSpeedTest
NSpeedTest copied to clipboard
NSpeedTest C# client library to test internet bandwidth using speedtest.net
I have changed code and it's working fine, TLS issue. public T GetConfig(string url) { using (WebClient webClient = new WebClient()) { ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; var data = webClient.DownloadString(url); var...
I search around in project sources, it doesn't seems to be hard-limited here. Is there any limit from SpeedTest.NET side ? I'm using your library on my project: https://github.com/ThePhOeNiX810815/Endpoint-Status-Checker thaNks
Hi, I get difference ranging 300-600 compared to speedtest.net result, the results look reversed most of the times, download speed is close to upload and vice versa. Could you please...
Any chance you're planning on porting this to .NET Standard?
I am based in Ireland as Virgin Media customer, my paid service is 360mbps. If I do a speedtest with NSpeedTest, the selected server will be Vodafone/Dublin. The measured speed...
The upload speed measurement seems to be only about 60% to 70% of what I get from other speed tests. I cannot seem to reconcile the difference.
Updated request.UserAgent due to error: The remote server returned an error: (403) Forbidden.
You can find a version that does that here: https://github.com/BrendanGrant/NSpeedTestStandard _Originally posted by @BrendanGrant in https://github.com/Kwull/NSpeedTest/issues/2#issuecomment-418201746_