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

In This Topic
    GetDataSourceType Method (FeatureSceneLayer)
    In This Topic
    Gets the data source type.
    Syntax
    public SceneLayerDataSourceType GetDataSourceType()
    Public Function GetDataSourceType() As SceneLayerDataSourceType

    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