ArcGIS Pro 3.7 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 Function GetDataSourceType() As SceneLayerDataSourceType
    public SceneLayerDataSourceType GetDataSourceType()

    Return Value

    Example
    Get the Data Source type
    {
      // Note: call within QueuedTask.Run()
      {
        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 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also