libcurl.NET Internet Client API
Categories
InternetLicense
MIT LicenseFollow libcurl.NET
Other Useful Business Software
Crowdtesting That Delivers | Testeum
Testeum connects your software, app, or website to a worldwide network of testers, delivering detailed feedback in under 48 hours. Ensure functionality and refine UX on real devices, all at a fraction of traditional costs. Trusted by startups and enterprises alike, our platform streamlines quality assurance with actionable insights. Click to perfect your product now.
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