ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Core.Data.PluginDatastore Namespace / PluginTableTemplate Class / IsNativeRowCountSupported Method

In This Topic
    IsNativeRowCountSupported Method
    In This Topic
    Gets a value indicating whether the plug-in table or feature class supports row count natively.
    Syntax
    public virtual bool IsNativeRowCountSupported()
    Public Overridable Function IsNativeRowCountSupported() As Boolean

    Return Value

    true if the plug-in table or feature class supports row count natively; otherwise, false. The default is false.
    Remarks
    The reason why concrete implementations of this abstraction should overwrite this method and GetNativeRowCount (if the underlying data source supports native row count) is strictly for performance reasons. If this method returns false and a row count is needed for the plug-in table, the framework will call the Search method on the entire plug-in table and then manually iterate through the cursor to determine the number of rows.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also