DataObjectMethodAttribute Constructor (DataObjectMethodType)

 

Initializes a new instance of the DataObjectMethodAttribute class and identifies the type of data operation the method performs.

Namespace:   System.ComponentModel
Assembly:  System (in System.dll)

public:
DataObjectMethodAttribute(
	DataObjectMethodType methodType
)

Parameters

methodType
Type: System.ComponentModel::DataObjectMethodType

One of the DataObjectMethodType values that describes the data operation the method performs.

The IsDefault property is set to false when you create a DataObjectMethodAttribute object using this DataObjectMethodAttribute(DataObjectMethodType) constructor.

The following code example demonstrates how you can apply the DataObjectMethodAttribute attribute 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 NorthwindData type exposes two data methods: one to retrieve a set of data named GetAllEmployees, and another to delete data named DeleteEmployeeByID. The DataObjectMethodAttribute attribute is applied to both methods, the GetAllEmployees method is marked as the default method for the Select data operation, and the DeleteEmployeeByID method is marked as the default method for the Delete data operation.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: