View difference between Paste ID: kuTE3FD8 and xXZviFcD
SHOW: | | - or go back to the newest paste.
1-
Request.post("http://testing.local/post.php", new KeyValuePair<string, string>[] {
1+
Request.post("http://testing.local/post.php", new {
2
    name = "value"
3
}, (result)=>
4
{
5
    Console.Write(result);
6
}, (e)=>
7
{
8
    Console.Write(e.ToString());
9
});