Currently the portable version of NameValueCollection called “HttpValueCollection” does not provide an Indexer to get access the items… an indexer into the collection like values[“p1”] would be more helpful...
Currently we do it this way:
```
HttpValueCollection values = uri.ParseQueryString();
String p1 = values.Get(“p1”);
```
Currently we do it this way:
```
HttpValueCollection values = uri.ParseQueryString();
String p1 = values.Get(“p1”);
```