ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Editing Namespace / GeodatabaseTopologyProperties Class / WorkspaceName Property
Example

In This Topic
    WorkspaceName Property
    In This Topic
    Gets the workspace name for the topology.
    Syntax
    public string WorkspaceName {get;}
    Public ReadOnly Property WorkspaceName As String
    Example
    Get geodatabase topology properties by name
    var topoProperties = await map.GetTopologyAsync("TopologyName") as GeodatabaseTopologyProperties;
    
    var workspace = topoProperties.WorkspaceName;
    var topoLayer = topoProperties.TopologyLayer;
    var clusterTolerance = topoProperties.ClusterTolerance;
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also