Easy Projects .NET HTTP Client Written on September 30, 2011, by apieasyproject.
Easy Projects .NET HttpClient is an open source library that contains the necessary proxi classes and auxiliary utilities, which, on the whole, makes it simpler to develop applications that use Easy Projects .NET API.
The library includes an Http client to allow constructing API queries. Here’s an example code:
using (var client = new HttpClient(Global.BaseAddress, true, Global.Username, Global.Password))
{
var projects = client.Query<Project>().Where(p => p.ProjectID == 1 && p.Progress < 20).ToList();
}
Read more from the HttpClients category. If you would like to leave a comment, click here: Comment. or stay up to date with this post via RSS, or you can
Trackback from your site.
Social Bookmark :
Technorati,
Digg,
de.licio.us,
Yahoo,
Blinkbits,
Blogmarks,
Google,
Magnolia.
Leave a Comment
If you would like to make a comment, please fill out the form below.