SqlDataSourceView.RaiseUnsupportedCapabilityError Method
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.
Compares the capabilities that are requested for an ExecuteSelect(DataSourceSelectArguments) operation against those that the view supports and is called by the RaiseUnsupportedCapabilitiesError(DataSourceView) method.
protected public:
override void RaiseUnsupportedCapabilityError(System::Web::UI::DataSourceCapabilities capability);
protected internal override void RaiseUnsupportedCapabilityError (System.Web.UI.DataSourceCapabilities capability);
override this.RaiseUnsupportedCapabilityError : System.Web.UI.DataSourceCapabilities -> unit
Protected Friend Overrides Sub RaiseUnsupportedCapabilityError (capability As DataSourceCapabilities)
Parameters
- capability
- DataSourceCapabilities
One of the DataSourceCapabilities values that is compared against the capabilities that the view supports.
Exceptions
The data source does not have the selected capability
enabled.
Remarks
The RaiseUnsupportedCapabilityError method is used by the data source view to examine each of the capabilities that are requested by a data-bound control, which is represented by the DataSourceSelectArguments object that is passed to the Select method, and to compare those capabilities to the capabilities that are supported by the data source view. For the capabilities that are represented by the DataSourceSelectArguments object and are not supported by the data source view, a NotSupportedException exception is raised.