ArcGIS Pro 3.0 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / PointCloudSceneLayer Class / GetDataSourceType Method
Example

In This Topic
    GetDataSourceType Method (PointCloudSceneLayer)
    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 Data Source type for PointCloudSceneLayer
    //var pcsl = ...;
    //At 2.x - ISceneLayerInfo slInfo = pcsl as ISceneLayerInfo;
    //         SceneLayerDataSourceType dataSourceType = slInfo.GetDataSourceType();
    
    SceneLayerDataSourceType dataSourceType = pcsl.GetDataSourceType();
    if (dataSourceType == SceneLayerDataSourceType.Service)
    {
      //TODO...
    }
    else if (dataSourceType == SceneLayerDataSourceType.SLPK)
    {
    
    }
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 8.1

    See Also