Does IdentifyLayerAsync Method also support FeatureCollectionLayer?
https://developers.arcgis.com/net/latest/forms/guide/identify-features.htm
https://developers.arcgis.com/net/latest/ios/api-reference//html/T_Esri_ArcGISRuntime_Mapping_FeatureCollectionLayer.htm
The GeoElement list is empty.
<SPAN class="keyword token">var</SPAN> layer <SPAN class="operator token">=</SPAN> MyMapView<SPAN class="punctuation token">.</SPAN>Map<SPAN class="punctuation token">.</SPAN>OperationalLayers<SPAN class="punctuation token">[</SPAN><SPAN class="number token">0</SPAN><SPAN class="punctuation token">]</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">var</SPAN> pixelTolerance <SPAN class="operator token">=</SPAN> <SPAN class="number token">20</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">var</SPAN> returnPopupsOnly <SPAN class="operator token">=</SPAN> <SPAN class="keyword token">true</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">var</SPAN> maxResults <SPAN class="operator token">=</SPAN> <SPAN class="number token">1</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">var</SPAN> idResults <SPAN class="operator token">=</SPAN> <SPAN class="keyword token">await</SPAN> MyMapView<SPAN class="punctuation token">.</SPAN><SPAN class="token function">IdentifyLayerAsync</SPAN><SPAN class="punctuation token">(</SPAN>layer<SPAN class="punctuation token">,</SPAN> e<SPAN class="punctuation token">.</SPAN>Position<SPAN class="punctuation token">,</SPAN> pixelTolerance<SPAN class="punctuation token">,</SPAN> returnPopupsOnly<SPAN class="punctuation token">,</SPAN> maxResults<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">foreach</SPAN> <SPAN class="punctuation token">(</SPAN>GeoElement idElement <SPAN class="keyword token">in</SPAN> idResults<SPAN class="punctuation token">.</SPAN>GeoElements<SPAN class="punctuation token">)</SPAN>
<SPAN class="punctuation token">{</SPAN>
Feature idFeature <SPAN class="operator token">=</SPAN> idElement <SPAN class="keyword token">as</SPAN> Feature<SPAN class="punctuation token">;</SPAN>
<SPAN class="comment token">//idLayer.SelectFeature(idFeature);</SPAN>
<SPAN class="punctuation token">}</SPAN>
FeatureCollectionLayer idLayer <SPAN class="operator token">=</SPAN> idResults<SPAN class="punctuation token">.</SPAN>LayerContent <SPAN class="keyword token">as</SPAN> FeatureCollectionLayer<SPAN class="punctuation token">;</SPAN>
FeatureCollectionTable tables <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">(</SPAN>idLayer<SPAN class="punctuation token">.</SPAN>FeatureCollection<SPAN class="punctuation token">.</SPAN>Tables<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">.</SPAN><SPAN class="token function">FirstOrDefault</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="keyword token">var</SPAN> fields <SPAN class="operator token">=</SPAN> tables<SPAN class="punctuation token">.</SPAN>LayerInfo<SPAN class="punctuation token">.</SPAN>Fields<SPAN class="punctuation token">;</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>