Forum Discussion
Johannes Ekstrand
Aug 12, 2016Copper Contributor
SharePoint 2013 and Localization through CSOM
Hi, I have a question regarding localization of fields, contenttypes, list etc. using CSOM for SharePoint 2013. According to this technet article (https://msdn.microsoft.com/en-us/pnp_articles/create...
Ivan Vagunin
Aug 15, 2016Brass Contributor
Hi Johannes,
TitleResource property is not available SharePoint 2013 CSOM so far. However some objects (e.g. Field) has SchemaXmlWithResourceTokens property which may be used to provision objects as XML with resource tokens inside e.g.:
<Field DisplayName="$Resources:core,Created_By" Type="Text" StaticName="MyField" Name="MyField" .../>
Br, Ivan