I have a WindowsForm application and i want to send an List<> to the Web APIhere is my code in the windows form app:\[code\] Uri uri = new Uri("http://localhost/test/api/v1/name/testcontroller/"); HttpClient client = new HttpClient(); client.BaseAddress = uri; var mediaType = new MediaTypeHeaderValue("application/json"); var jsonFormatter = new JsonMediaTypeFormatter(); HttpContent content = new ObjectContent<List<TermbaseFile>>(termbaseList, jsonFormatter); HttpResponseMessage responseMessage = client.PostAsync(uri, content).Result;\[/code\]What should i put in the controller-method to get the List?