ArcGIS Pro 3.0 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. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public SceneLayerDataSourceType GetDataSourceType()
    Public Function GetDataSourceType() As SceneLayerDataSourceType

    Return Value

    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    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, Windows 8.1

    See Also