DataObjectMethodType Enumeration
Identifies the type of data operation performed by a method, as specified by the DataObjectMethodAttribute applied to the method.
Assembly: System (in System.dll)
| Member name | Description | |
|---|---|---|
| Delete | Indicates that a method is used for a data operation that deletes data. | |
| Fill | Indicates that a method is used for a data operation that fills a DataSet object. | |
| Insert | Indicates that a method is used for a data operation that inserts data. | |
| Select | Indicates that a method is used for a data operation that retrieves data. | |
| Update | Indicates that a method is used for a data operation that updates data. |
The following code example demonstrates how you can apply the DataObjectMethodAttribute to a publicly exposed method and identify the type of data operation it performs as well as whether it is the type's default data method. In this example the NorthwindEmployee type exposes two different data methods: one to retrieve a set of data named GetAllEmployees, and one to delete data named DeleteEmployeeByID. The DataObjectMethodAttribute is applied to both methods.
Available since 2.0