ArcGIS Pro 3.5 API Reference Guide
ArcGIS.Core.Data.Knowledge Namespace / DocumentPropertyInfo Class
Members Example

In This Topic
    DocumentPropertyInfo Class
    In This Topic
    Class representing information about the names of the unique identifier document properties in a knowledge graph. See KnowledgeGraphPropertyInfo.SupportsDocuments, KnowledgeGraphPropertyInfo.DocumentPropertyInfo and KnowledgeGraph.GetPropertyNameInfo.
    Syntax
    public sealed class DocumentPropertyInfo 
    Public NotInheritable Class DocumentPropertyInfo 
    Example
    Get Whether KG Supports Documents using KnowledgeGraphPropertyInfo
    internal void KnowledgeGraphDocuments(KnowledgeGraph kg)
    {
      // use the KnowledgeGraphPropertyInfo
      var propInfo = kg.GetPropertyNameInfo();
      var supportsDocs = propInfo.SupportsDocuments;
      var documentType = propInfo.DocumentTypeName;
      var documentInfo = propInfo.DocumentPropertyInfo;
    }
    
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.Data.Knowledge.DocumentPropertyInfo

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.5 or higher.
    See Also