I have a class in my web project:
public class MyClass { public int? Param1 { get; set; } public int? Param2 { get; set; } }
which is a
The answer is Yes. The difference between GET and POST requests is that a POST body can have a content type so they can be interpreted correctly on the server side as XML, or Json, so on; for GET, all you have is just a querystring.