ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / MapMember Class / GetDataConnection Method
Example

In This Topic
    GetDataConnection Method (MapMember)
    In This Topic
    Gets a CIMDataConnection value object. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Overridable Function GetDataConnection() As CIMDataConnection
    public virtual CIMDataConnection GetDataConnection()

    Return Value

    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Reset the URL of a feature service layer
    {
        CIMStandardDataConnection dataConnection = featureLayer.GetDataConnection() as CIMStandardDataConnection;
        dataConnection.WorkspaceConnectionString = @"DATABASE=C:\Data\USNationalParks\USNationalParks.gdb";
        //Note: needs to be called on the MCT
        featureLayer.SetDataConnection(dataConnection);
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also