ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.PluginDatastore Namespace / PluginDatasourceTemplate Class / GetTableNames Method

In This Topic
    GetTableNames Method (PluginDatasourceTemplate)
    In This Topic
    Gets the name of all the tables and feature classes that exist in the currently opened plug-in data source.
    Syntax
    public abstract IReadOnlyList<string> GetTableNames()
    Public MustOverride Function GetTableNames() As IReadOnlyList(Of String)

    Return Value

    A IReadOnlyList of table names.
    Exceptions
    ExceptionDescription
    Signals to the framework that an exception derived from System.Exception has occurred.
    Remarks

    These plug-in tables and feature classes do not necessarily correspond to database tables on the back end. They can be any data structure or format in the third-party data source, but are presented to ArcGIS as a table via the Plugin Datasource.

    The concrete implementation will decide whether the returned table names are fully qualified or unqualified as long as the names can be successfully used as arguments to OpenTable.

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also