DataSourceCapabilities Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides a way to request processing beyond record retrieval for a data retrieval operation of a data source control.
This enumeration supports a bitwise combination of its member values.
public enum class DataSourceCapabilities
[System.Flags]
public enum DataSourceCapabilities
[<System.Flags>]
type DataSourceCapabilities =
Public Enum DataSourceCapabilities
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Represents no paging, sorting, or total row count retrieval capabilities. |
Sort | 1 | Represents the capability to sort through the rows returned by an ExecuteSelect(DataSourceSelectArguments) operation. |
Page | 2 | Represents the capability to page through the rows returned by an ExecuteSelect(DataSourceSelectArguments) operation. |
RetrieveTotalRowCount | 4 | Represents the capability to retrieve a total row count of data, which corresponds to using the SelectCount value. |
Remarks
Data source controls use the DataSourceCapabilities enumeration in conjunction with the DataSourceSelectArguments class to request paging, sorting, or other select-specific capabilities when performing a data retrieval operation. The requested capabilities are checked against the actual capabilities of the data source control during the data retrieval operation, and if they do not match an exception is raised.
This enumeration supports the FlagsAttribute attribute, which enables you to use more than one member at a time.
Applies to
See also
.NET