I'm building a custom model binder in ASP.NET, and in my post variables I have couple of them with same name. Example: website.com?person=1&person=3&person=6
Currently I'm using request.Form.Get("name") syntax to get variables, but it returns string, not list of strings, which I need. How can I get all variables in list?