| Numéro d’ID de bogue |
BUG-000122050 |
| Envoi | April 30, 2019 |
| Dernière modification | June 5, 2024 |
| S’applique à | ArcGIS Runtime SDK |
| Version trouvée | 100.5 |
| Système d’exploitation | Windows OS |
| Statut | Will Not Be Addressed
L’équipe de développement a examiné le problème ou la demande et a décidé qu’ils ne seraient pas traités. Pour d’autres explications, reportez-vous à la section Informations supplémentaires correspondant au problème.
|
Informations supplémentaires
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);
```
Étapes pour reproduire
ID de bogue: BUG-000122050
Logiciel: