DataSourceSelectArguments.RaiseUnsupportedCapabilitiesError Method

Definition

Compares the capabilities requested for an ExecuteSelect(DataSourceSelectArguments) operation against those that the specified data source view supports.

public:
 void RaiseUnsupportedCapabilitiesError(System::Web::UI::DataSourceView ^ view);
public void RaiseUnsupportedCapabilitiesError (System.Web.UI.DataSourceView view);
member this.RaiseUnsupportedCapabilitiesError : System.Web.UI.DataSourceView -> unit
Public Sub RaiseUnsupportedCapabilitiesError (view As DataSourceView)

Parameters

view
DataSourceView

The data source view that performs the data retrieval operation.

Exceptions

The data source view does not support the data source capability specified.

Remarks

The RaiseUnsupportedCapabilitiesError(DataSourceView) method is used by data-bound controls to compare additional requested capabilities represented by the properties of the DataSourceSelectArguments class, such as the ability to sort or page through a result set, with the capabilities supported by the data source view. The view calls its own RaiseUnsupportedCapabilityError(DataSourceCapabilities) method for each possible capability defined in the DataSourceCapabilities enumeration.

Important

If any of the DataSourceSelectArguments properties are set, but the currently bound data source control does not support the requested capability, an InvalidOperationException exception is thrown when the DataSourceSelectArguments.RaiseUnsupportedCapabilitiesError(DataSourceView) method is called.

Applies to

See also