ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / FeatureSceneLayer Class / GetDataSourceType Method
Example Version

    GetDataSourceType Method (FeatureSceneLayer)
    Gets the data source type.
    Syntax
    public SceneLayerDataSourceType GetDataSourceType()

    Return Value

    Example
    Get the Data Source type
    //Must be called on the MCT
    var dataSourceType = featSceneLayer?.GetDataSourceType() ?? 
                               SceneLayerDataSourceType.Unknown;
    if (dataSourceType == SceneLayerDataSourceType.SLPK)
    {
      //Uses SLPK - only cached attributes
    }
    else if (dataSourceType == SceneLayerDataSourceType.Service)
    {
      //Hosted service - can have live attributes - check HasAssociatedFeatureService
    }
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also