I want to pass dynamic Parameters by rest URL to C# method with dynamic Parameters. For example, I want to call a rest URL like this:
http://localhost:2000/custom?**user=admin?password=admin?brand=dell&limit=20&price=20000&type1=laptop&type2=phone**
to a C# method of one dynamic parameter, the dynamic parameter takes "user" and its value "admin", "brand" and its value "dell" etc., and process them.
Can somebody help me please.