0
prev created
I need to get list of navigation menu for anonymous user, so that I use INavigationManager. But I also need the Name property of DisplayName which is a ILocalizableString object.
What is the solution?
6 Answer(s)
-
0
What do you mean?
(Link to previous topic for context: #4271@85f1c120-58c4-45d8-ace2-b82df474fb89)
-
0
yap, this is linked to viewtopic.php?p=24724
-
0
So... What do you mean?
-
0
I need to get Name from ILocalizableString, but I cannot figure out the solution.
-
0
You can cast it to the concrete class:
var name = (localizableString as LocalizableString).Name;
-
0
Thank a lot, it works... :) :) :) :)