I have to migrate a ArcGIS for Windows Mobile 10.0 solution to version 10.2.1.
It was a pain to replace all the new changes so far and now I have to care about a special problem.
In 10.0 there was a method named GetDomain() for the FeatureLayer class:
object domain = featureDataTable.FeatureSource.GetDomain(
pSubTypeIndex,
featureDataTable.Columns[featureDataTable.DisplayColumnIndex].ColumnName);
But this method no longer exists.
How could I get these domain information now?