Reputation: 2905
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.
Upvotes: 2
Views: 673
Reputation: 35564
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.
Upvotes: 4