ArcGIS Pro 3.7 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 Function Synchronize() As String
    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;
      // Note: Needs QueuedTask to run
      syncedMetadataXml = metadataItemToSync.Synchronize();
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also