The QueryFeaturesAsync method in the ServiceFeatureTable class sends an incorrect REST query when the service has M values resulting in NaN M values in an application.
上次发布: October 14, 2019ArcGIS Runtime SDK
漏洞 ID 编号
BUG-000122050
已提交
April 30, 2019
上次修改时间
June 5, 2024
适用范围
ArcGIS Runtime SDK
找到的版本
100.5
操作系统
Windows OS
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
The default behavior of feature tables is to load only the minimum content required for geometry and attribute values. M values can be obtained by explicitly loading each feature or by refreshing the table:
For example, explicitly load each feature:
```
var f1 = pointsQueryResult.First();
var f2 = linesQueryResult.First();
var f3 = polysQueryResult.First();
await (f1 as ArcGISFeature).LoadAsync();
await (f2 as ArcGISFeature).LoadAsync();
await (f3 as ArcGISFeature).LoadAsync();
```
For example,
```
await pointsTable.LoadOrRefreshFeaturesAsync(pointsQueryResult);
```