P
Peter Judge
Guest
PathParameterNames will give you a list of the substitution tokens that you've set up in the handler URI So if you have a handler for /Customers/{CustNum}/Orders/{ONum} then the PathParameterNames will return you CustNum,ONum. The ContextNames property contains a list of all the available context/variables, which includes those used for the param names (which are prefixed by URI_). So in the absence of any others, you'll get URI_CUSTNUM,URI_ONUM in the above example.
Continue reading...
Continue reading...