Does anyone know what happened to the UriQuery
class in Prism 6? just following a tutorial and it says it was under Microsoft.Practices.Prism
but as the namespaces have all changed I can't find it.
Asked
Active
Viewed 658 times
1 Answers
4
The class UriQuery
was renamed to NavigationParameters
. You can find it in the namespace Prism.Regions
(Assembly Prism.Wpf
). This was changed in Version 5.0
The UriQuery class was renamed to NavigationParameters, it keeps the same functionality as before, and adds support for passing object parameters.

Jehof
- 34,674
- 10
- 123
- 155
-
Thanks, that has helped. Where did it say this? I was on the project site and looked through the Wiki etc but couldn't find anything on the UriQuery change. – Gaz83 Feb 11 '16 at 13:12
-
@Gaz83 this was done by Microsoft before is was open sourced. see the link in my answer – Jehof Feb 11 '16 at 13:13