libcurl.NET Internet Client API
Categories
InternetLicense
MIT LicenseFollow libcurl.NET
Other Useful Business Software
Powerful App Monitoring Without Surprise Bills
Tired of monitoring tools that punish you for scaling? AppSignal offers transparent, predictable pricing with every feature unlocked on every plan. Track errors, monitor performance, detect anomalies, and manage logs across Ruby, Python, Node.js, and more. Trusted by developers since 2012 with free dev-to-dev support. No credit card required to start your 30-day trial.
Rate This Project
Login To Rate This Project
User Reviews
-
I must say, this project is AWESOME! I have been using it for years to retrieve data from the internet (including projects to log into webpages). There's not a lot of documentation, so it can sometimes be hard to find information, but once you get a nice working solution, you can reuse it. There's one small issue with this. I usually just use the .dll, the stock one (I for some reason never got into the source), and the problem I have been experiencing is a memory leak. I was able to find a way around it however, but if you are using this to do constant fetches to the net (like in my case it was once every 15 secs), a leak does occur. To fix it you need to create a new class with the curl functions, when you are done, declare that variable to null (use to call the class), and then run the Garbage Collector, this seemed to fix the issue after long hours of testing