ArcGIS Pro 3.1 API Reference Guide
ArcGIS.Desktop.Core Namespace / Item Class / Synchronize Method
Example Version

    Synchronize Method (Item)
    Updates metadata with the current properties of the item. Metadata is created for the item if it doesn't already exist. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public string Synchronize()

    Return Value

    Metadata xml string
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Item: Updates metadata with the current properties of the item: Synchronize
    string syncedMetadataXml = string.Empty;
    await QueuedTask.Run(() => syncedMetadataXml = metadataItemToSync.Synchronize());
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.0 or higher.
    See Also