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

In This Topic
    Synchronize Method (Item)
    In This Topic
    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()
    Public Function Synchronize() As String

    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 or higher.
    See Also