ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Core Namespace / Item Class / UpgradeMetadata Method
Example

In This Topic
    UpgradeMetadata Method (Item)
    In This Topic
    Upgrade the metadata of the current item. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Sub UpgradeMetadata( _
       ByVal upgradeOption As MDUpgradeOption _
    ) 
    public void UpgradeMetadata( 
       MDUpgradeOption upgradeOption
    )

    Parameters

    upgradeOption
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Item: Upgrade the metadata of the current item: UpgradeMetadata
    {
      var fgdcItem = ItemFactory.Instance.Create(@"C:\projectAlpha\GDBs\testData.gdb");
      // Note: Needs QueuedTask to run
      fgdcItem.UpgradeMetadata(MDUpgradeOption.esriUpgradeFgdcCsdgm);
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also