예제 #1
0
 public dynamic Post(Form form)
 {
     var foo = Request.Headers.GetValues("name");
     return foo;
 }
예제 #2
0
 // GET api/user/5
 public string Get(Form form)
 {
     var name = form.Name;
     var foo = Request;
     return "value";
 }