libcurl.NET Internet Client API
Categories
InternetLicense
MIT LicenseFollow libcurl.NET
nel_h2
Enterprise-grade ITSM, for every business
Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
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