ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Core.Data.Knowledge Namespace / KnowledgeGraphConnectionProperties Class / URL Property
Example

In This Topic
    URL Property (KnowledgeGraphConnectionProperties)
    In This Topic
    The service URL.
    Syntax
    public Uri URL {get;}
    Public ReadOnly Property URL As Uri
    Example
    Get service Uri from KG datastore
    QueuedTask.Run(() =>
    {
      var connector = kg.GetConnector() as KnowledgeGraphConnectionProperties;
      var uri = connector.URL;
      var serviceUri = uri.AbsoluteUri;
    });
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also