Skip to content

http client featuring wut, the httplistener api

Notifications You must be signed in to change notification settings

GunioRobot/httpardon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

####httpardon - httparty for .net

var response = Http.get("http://twitter.com/statuses/public_timeline.json");

Console.WriteLine("{1} {0}", response.Raw, response.HttpWebRequest.StatusCode);
foreach (var x in response.Body) Console.WriteLine(x.user.screen_name); 

####wut - dsl for async httplistener, great for testing httpardon

Listen.OnLocalhost().Respond(x => x.Json(twitter_json));
var response = Http.get(Listen.Url)
Listen.Stop();

About

http client featuring wut, the httplistener api

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 95.2%
  • Shell 4.8%