I have 2 views with the same name “RootView” that come from different namespaces: “Foo” and “Bar”. What exactly do I have to pass as a view name to RegionManage.RequestNavigate method?
this.regionManager.RequestNavigate("MainRegion", "RootView"); // <--- RootView from Foo or Bar?
As always there is nothing said about it on MSDN: http://msdn.microsoft.com/en-us/library/gg418956(v=pandp.40).aspx
Answer is: Full name
Thank you for your attention.