ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Core.Data.Knowledge Namespace / KnowledgeGraphPropertyInfo Class / SupportsProvenance Property
Example

In This Topic
    SupportsProvenance Property
    In This Topic
    Gets if the knowledge graph supports provenance.
    Syntax
    public bool SupportsProvenance {get;}
    Public ReadOnly Property SupportsProvenance As Boolean
    Example
    Get Whether KG Supports Provenance using KnowledgeGraphPropertyInfo
    internal void KnowledgeGraphProvenance(KnowledgeGraph kg)
    {
      // use the KnowledgeGraphPropertyInfo
      var propInfo = kg.GetPropertyNameInfo();
      var supportsProvenance = propInfo.SupportsProvenance;
      var provenanceType = propInfo.ProvenanceTypeName;
      var provenanceInfo = propInfo.ProvenancePropertyInfo;
    }
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.4 or higher.
    See Also