Numéro d’ID de bogue |
BUG-000155519 |
Envoi | February 1, 2023 |
Dernière modification | June 5, 2024 |
S’applique à | ArcObjects SDK |
Version trouvée | 10.8.1 |
Système d’exploitation | Windows OS |
Version du système d’exploitation | 10.0 64 Bit |
Statut | Non-Reproducible
Ce problème n’a pas pu être reproduit au cours des tests réalisés par l’équipe de développement. Ce statut peut être attribué aux problèmes qui sont impossibles à reproduire ou qui ne sont plus d’actualité dans une version de développement du logiciel, alors qu’aucun correctif spécifique n’a été installé pour résoudre le problème. Pour d’autres explications, reportez-vous à la section Informations supplémentaires correspondant au problème.
|
Informations supplémentaires
Within the UpdateFeatureClass method, the updated row 'updateR' is not being managed correctly, but can be corrected with the following two ReleaseComObject calls:
if (!isPlotShapeSuccess)
{
if (updateR != null) Marshal.ReleaseComObject(updateR);
return false;
}
//try to update all changes at once with all the updated info.
update.UpdateRow(updateR);
if (updateR != null) Marshal.ReleaseComObject(updateR);
Solution de contournement
Within the UpdateFeatureClass method, the updated row 'updateR' is not being managed correctly, but can be corrected with the following two ReleaseComObject calls:
if (!isPlotShapeSuccess)
{
if (updateR != null) Marshal.ReleaseComObject(updateR);
return false;
}
//try to update all changes at once with all the updated info.
update.UpdateRow(updateR);
if (updateR != null) Marshal.ReleaseComObject(updateR);
Étapes pour reproduire