Hello,
Thank you for any help.
Getting data related to a list (title of the list, title of the column) according to some culture is quite easy with Server APIs:
...
IEnumerable<CultureInfo> cultures = web.SupportedUICultures;
... and loop on those cultures.
How can I do this using CSOM client APIs?
I tried something like:
...
context.Load(web.SupportedUILanguageIds)
...
to load those cultures but this do not compile.
Has somebody dit it?
The final purpose is to get lists (title of the list, title of the column) in specific languages, as for example if I have a list title called in english 'testEn' and the same list title called in french 'testFr', I'd like to get back all the lists from my site in french (for example) and therefore find among them the list calld 'testFr'.
Kind regards.
Claude
Thank you for any help.
Getting data related to a list (title of the list, title of the column) according to some culture is quite easy with Server APIs:
...
IEnumerable<CultureInfo> cultures = web.SupportedUICultures;
... and loop on those cultures.
How can I do this using CSOM client APIs?
I tried something like:
...
context.Load(web.SupportedUILanguageIds)
...
to load those cultures but this do not compile.
Has somebody dit it?
The final purpose is to get lists (title of the list, title of the column) in specific languages, as for example if I have a list title called in english 'testEn' and the same list title called in french 'testFr', I'd like to get back all the lists from my site in french (for example) and therefore find among them the list calld 'testFr'.
Kind regards.
Claude