DataSourceOperation Enumeration (System.Web.UI)

Switch View :
ScriptFree
.NET Framework Class Library
DataSourceOperation Enumeration

Specifies a data operation performed by a data source control.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic
Public Enumeration DataSourceOperation
C#
public enum DataSourceOperation
Visual C++
public enum class DataSourceOperation
F#
type DataSourceOperation
Members

Member name Description
Delete The operation deletes records from a data source.
Insert The operation inserts one or more records into a data source.
Select The operation retrieves records from a data source.
Update The operation updates records in a data source.
SelectCount The operation retrieves the total number of records for a query from the data source.
Remarks

The DataSourceOperation enumeration represents the actions that a data source control can perform on its underlying data. Data source controls such as SqlDataSource and ObjectDataSource use these enumeration values to track the type of operation being performed.

The five major data source operations are represented by the DataSourceOperation enumeration. The Select and SelectCount values indicate operations that retrieve data from an underlying data source, while the Delete, Insert, and Update values indicate operations that modify data.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference